mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
11 lines
275 B
C
11 lines
275 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
enum NfcCustomEvent {
|
||
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
||
|
|
NfcCustomEventReserved = 100,
|
||
|
|
|
||
|
|
NfcCustomEventViewExit,
|
||
|
|
NfcCustomEventWorkerExit,
|
||
|
|
NfcCustomEventByteInputDone,
|
||
|
|
NfcCustomEventTextInputDone,
|
||
|
|
};
|