mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 23:10:16 +00:00
21 lines
551 B
C
21 lines
551 B
C
|
#pragma once
|
||
|
|
||
|
typedef enum {
|
||
|
DTMFDolphinEventVolumeUp = 0,
|
||
|
DTMFDolphinEventVolumeDown,
|
||
|
DTMFDolphinDialerOkCB,
|
||
|
DTMFDolphinEventStartDialer,
|
||
|
DTMFDolphinEventStartBluebox,
|
||
|
DTMFDolphinEventStartRedboxUS,
|
||
|
DTMFDolphinEventStartRedboxUK,
|
||
|
DTMFDolphinEventStartRedboxCA,
|
||
|
DTMFDolphinEventStartMisc,
|
||
|
DTMFDolphinEventPlayTones,
|
||
|
DTMFDolphinEventStopTones,
|
||
|
DTMFDolphinEventDMAHalfTransfer,
|
||
|
DTMFDolphinEventDMAFullTransfer,
|
||
|
} DTMFDolphinEvent;
|
||
|
|
||
|
typedef struct {
|
||
|
DTMFDolphinEvent type;
|
||
|
} DTMFDolphinCustomEvent;
|