mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 23:10:22 +00:00
20 lines
516 B
C
20 lines
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;
|