mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
Fix FMCN setting so it actually matches datasheet
1.5us instead of 1us. 1us is only for fuse programming, not for regular Flash programming.
This commit is contained in:
parent
e7227419e5
commit
9e84fd5b73
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@
|
|||
#define MC_FLASH_STATUS_LOCKE (1<<2)
|
||||
#define MC_FLASH_STATUS_PROGE (1<<3)
|
||||
#define MC_FLASH_MODE_FLASH_WAIT_STATES(x) ((x)<<8)
|
||||
#define MC_FLASH_MODE_MASTER_CLK_IN_MHZ(x) ((x)<<16)
|
||||
#define MC_FLASH_MODE_MASTER_CLK_IN_MHZ(x) (((x)+((x)/2))<<16)
|
||||
#define MC_FLASH_COMMAND_PAGEN(x) ((x)<<8)
|
||||
|
||||
#define RST_CONTROL_KEY (0xa5<<24)
|
||||
|
|
Loading…
Reference in a new issue