mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 04:34:43 +04:00
37 lines
920 B
C
37 lines
920 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
NfcCustomEventReserved = 100,
|
|
|
|
// Mf classic dict attack events
|
|
NfcCustomEventDictAttackComplete,
|
|
NfcCustomEventDictAttackSkip,
|
|
NfcCustomEventDictAttackDataUpdate,
|
|
|
|
NfcCustomEventCardDetected,
|
|
NfcCustomEventCardLost,
|
|
|
|
NfcCustomEventViewExit,
|
|
NfcCustomEventRetry,
|
|
NfcCustomEventWorkerExit,
|
|
NfcCustomEventWorkerUpdate,
|
|
NfcCustomEventWrongCard,
|
|
NfcCustomEventTimerExpired,
|
|
NfcCustomEventByteInputDone,
|
|
NfcCustomEventTextInputDone,
|
|
NfcCustomEventDictAttackDone,
|
|
|
|
NfcCustomEventRpcLoadFile,
|
|
NfcCustomEventRpcExit,
|
|
NfcCustomEventRpcSessionClose,
|
|
|
|
NfcCustomEventPollerSuccess,
|
|
NfcCustomEventPollerIncomplete,
|
|
NfcCustomEventPollerFailure,
|
|
|
|
NfcCustomEventListenerUpdate,
|
|
|
|
NfcCustomEventEmulationTimeExpired,
|
|
} NfcCustomEvent;
|