mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
20 lines
No EOL
516 B
C
20 lines
No EOL
516 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
DTMFDolphinEventVolumeUp = 0,
|
|
DTMFDolphinEventVolumeDown,
|
|
DTMFDolphinDialerOkCB,
|
|
DTMFDolphinEventStartDialer,
|
|
DTMFDolphinEventStartBluebox,
|
|
DTMFDolphinEventStartRedboxUS,
|
|
DTMFDolphinEventStartRedboxUK,
|
|
DTMFDolphinEventStartMisc,
|
|
DTMFDolphinEventPlayTones,
|
|
DTMFDolphinEventStopTones,
|
|
DTMFDolphinEventDMAHalfTransfer,
|
|
DTMFDolphinEventDMAFullTransfer,
|
|
} DTMFDolphinEvent;
|
|
|
|
typedef struct {
|
|
DTMFDolphinEvent type;
|
|
} DTMFDolphinCustomEvent; |