unleashed-firmware/applications/main/nfc/helpers/nfc_custom_event.h
2023-08-08 14:16:35 +03:00

24 lines
637 B
C

#pragma once
enum NfcCustomEvent {
// Reserve first 100 events for button types and indexes, starting from 0
NfcCustomEventReserved = 100,
NfcCustomEventViewExit,
NfcCustomEventWorkerExit,
NfcCustomEventByteInputDone,
NfcCustomEventTextInputDone,
NfcCustomEventDictAttackDone,
NfcCustomEventDictAttackSkip,
NfcCustomEventRpcLoad,
NfcCustomEventRpcSessionClose,
NfcCustomEventUpdateLog,
NfcCustomEventSaveShadow,
};
enum NfcSceneSetUidState {
NfcSceneSetUidStateNotSet,
NfcSceneSetUidStateMFClassic1k,
NfcSceneSetUidStateMFClassic4k,
NfcSceneSetUidStateMFClassicMini,
};