forked from flipperdevices/flipperzero-firmware
-
-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File format overhaul, config backend
- Explicitly list each track in file format, rather than intuiting based on start/end sentinels of string - Bump file format version - Temp. add manually edits for testing with new file format - Emulate config backend Next steps: have refactored mag_helper emulation funcs use config values rather than hardcoded ones
- Loading branch information
1 parent
9d20ab6
commit d0faf35
Showing
9 changed files
with
145 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#pragma once | ||
|
||
typedef enum { | ||
MagReverseStateOn, | ||
MagReverseStateOff, | ||
} MagReverseState; | ||
|
||
typedef enum { | ||
MagTrackStateAll, | ||
MagTrackStateOne, | ||
MagTrackStateTwo, | ||
} MagTrackState; | ||
|
||
typedef enum { | ||
MagTxStateRFID, | ||
MagTxStateGPIOA6A7, | ||
} MagTxState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.