mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
21 lines
No EOL
551 B
C
21 lines
No EOL
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; |