mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-20 20:18:17 +08:00
Fix syntax
This commit is contained in:
parent
54bea5a067
commit
3e9397e337
1 changed files with 130 additions and 128 deletions
|
@ -80,8 +80,9 @@ void setT55xxConfig(t55xx_config *c) {
|
||||||
printT55xxConfig();
|
printT55xxConfig();
|
||||||
|
|
||||||
#if WITH_FLASH
|
#if WITH_FLASH
|
||||||
if (!FlashInit())
|
if (!FlashInit()) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Flash_CheckBusy(BUSY_TIMEOUT);
|
Flash_CheckBusy(BUSY_TIMEOUT);
|
||||||
|
|
||||||
|
@ -100,8 +101,9 @@ t55xx_config* getT55xxConfig(void) {
|
||||||
|
|
||||||
void loadT55xxConfig(void) {
|
void loadT55xxConfig(void) {
|
||||||
#if WITH_FLASH
|
#if WITH_FLASH
|
||||||
if (!FlashInit())
|
if (!FlashInit()) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Flash_CheckBusy(BUSY_TIMEOUT);
|
Flash_CheckBusy(BUSY_TIMEOUT);
|
||||||
Flash_WriteEnable();
|
Flash_WriteEnable();
|
||||||
|
|
Loading…
Add table
Reference in a new issue