| 12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- #define MAG_VERSION_APP "0.01"
- #define MAG_DEVELOPER "Zachary Weiss"
- #define MAG_GITHUB "github.com/zacharyweiss/magspoof_flipper"
- typedef enum {
- MagViewSubmenu,
- MagViewDialogEx,
- MagViewPopup,
- MagViewLoading,
- MagViewWidget,
- MagViewVariableItemList,
- MagViewTextInput,
- MagViewMagTextInput,
- } MagView;
- typedef enum {
- MagReverseStateOn,
- MagReverseStateOff,
- } MagReverseState;
- typedef enum {
- MagTrackStateAll,
- MagTrackStateOne,
- MagTrackStateTwo,
- } MagTrackState;
- typedef enum {
- MagTxStateRFID,
- MagTxStateGPIOA6A7,
- MagTxCC1101_434,
- MagTxCC1101_868,
- } MagTxState;
|