mag_types.h 601 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #define MAG_VERSION_APP "0.01"
  3. #define MAG_DEVELOPER "Zachary Weiss"
  4. #define MAG_GITHUB "github.com/zacharyweiss/magspoof_flipper"
  5. typedef enum {
  6. MagViewSubmenu,
  7. MagViewDialogEx,
  8. MagViewPopup,
  9. MagViewLoading,
  10. MagViewWidget,
  11. MagViewVariableItemList,
  12. MagViewTextInput,
  13. MagViewMagTextInput,
  14. } MagView;
  15. typedef enum {
  16. MagReverseStateOn,
  17. MagReverseStateOff,
  18. } MagReverseState;
  19. typedef enum {
  20. MagTrackStateAll,
  21. MagTrackStateOne,
  22. MagTrackStateTwo,
  23. } MagTrackState;
  24. typedef enum {
  25. MagTxStateRFID,
  26. MagTxStateGPIOA6A7,
  27. } MagTxState;