mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
chg: flash messge
This commit is contained in:
parent
6d1c996251
commit
4c9b95c216
1 changed files with 9 additions and 9 deletions
|
@ -378,12 +378,12 @@ static int wait_for_ack(PacketResponseNG *ack) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void flash_suggest_update_bootloader(void) {
|
static void flash_suggest_update_bootloader(void) {
|
||||||
PrintAndLogEx(ERR, _RED_("It is recommended that you first" _YELLOW_("update your bootloader") " alone,"));
|
PrintAndLogEx(ERR, _RED_("It is recommended that you first " _YELLOW_("update your bootloader") _RED_("alone,")));
|
||||||
PrintAndLogEx(ERR, _RED_("reboot the Proxmark3 then only update the main firmware") "\n");
|
PrintAndLogEx(ERR, _RED_("reboot the Proxmark3 then only update the main firmware") "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void flash_suggest_update_flasher(void) {
|
static void flash_suggest_update_flasher(void) {
|
||||||
PrintAndLogEx(ERR, _RED_("It is recommended that you first" _YELLOW_("update your flasher") ));
|
PrintAndLogEx(ERR, _RED_("It is recommended that you first " _YELLOW_("update your flasher")));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Go into flashing mode
|
// Go into flashing mode
|
||||||
|
@ -418,17 +418,17 @@ int flash_start_flashing(int enable_bl_writes, char *serial_port_name, uint32_t
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
//
|
//
|
||||||
} else if (BL_VERSION_MAJOR(version) < BL_VERSION_MAJOR(FLASHER_VERSION)) {
|
} else if (BL_VERSION_MAJOR(version) < BL_VERSION_MAJOR(FLASHER_VERSION)) {
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ==================================="));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ==================================="));
|
||||||
PrintAndLogEx(ERR, _RED_("Note: Your bootloader reported a version older than this flasher"));
|
PrintAndLogEx(ERR, _RED_("Note: Your bootloader reported a version older than this flasher"));
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
} else if (BL_VERSION_MAJOR(version) > BL_VERSION_MAJOR(FLASHER_VERSION)) {
|
} else if (BL_VERSION_MAJOR(version) > BL_VERSION_MAJOR(FLASHER_VERSION)) {
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ========================="));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ========================="));
|
||||||
PrintAndLogEx(ERR, _RED_("Note: Your bootloader is more recent than this flasher"));
|
PrintAndLogEx(ERR, _RED_("Note: Your bootloader is more recent than this flasher"));
|
||||||
flash_suggest_update_flasher();
|
flash_suggest_update_flasher();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ==========================================="));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ==========================================="));
|
||||||
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new" _YELLOW_("CMD_BL_VERSION") " command"));
|
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new " _YELLOW_("CMD_BL_VERSION") _RED_("command")));
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -437,10 +437,10 @@ int flash_start_flashing(int enable_bl_writes, char *serial_port_name, uint32_t
|
||||||
|
|
||||||
int mem_avail = chipid_to_mem_avail(chipinfo);
|
int mem_avail = chipid_to_mem_avail(chipinfo);
|
||||||
if (mem_avail != 0) {
|
if (mem_avail != 0) {
|
||||||
PrintAndLogEx(NORMAL, "Available memory on this board: %uK bytes\n", mem_avail);
|
PrintAndLogEx(NORMAL, "Available memory on this board: "_YELLOW_("%uK") "bytes\n", mem_avail);
|
||||||
if (mem_avail > 256) {
|
if (mem_avail > 256) {
|
||||||
if (BL_VERSION_MAJOR(version) < BL_VERSION_MAJOR(BL_VERSION_1_0_0)) {
|
if (BL_VERSION_MAJOR(version) < BL_VERSION_MAJOR(BL_VERSION_1_0_0)) {
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ======================"));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ======================"));
|
||||||
PrintAndLogEx(ERR, _RED_("Your bootloader does not support writing above 256k"));
|
PrintAndLogEx(ERR, _RED_("Your bootloader does not support writing above 256k"));
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
} else {
|
} else {
|
||||||
|
@ -451,7 +451,7 @@ int flash_start_flashing(int enable_bl_writes, char *serial_port_name, uint32_t
|
||||||
} else {
|
} else {
|
||||||
PrintAndLogEx(NORMAL, "Available memory on this board: "_RED_("UNKNOWN")"\n");
|
PrintAndLogEx(NORMAL, "Available memory on this board: "_RED_("UNKNOWN")"\n");
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ======================================"));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ======================================"));
|
||||||
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new" _YELLOW_("CHIP_INFO") " command"));
|
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new " _YELLOW_("CHIP_INFO") _RED_("command")));
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -471,7 +471,7 @@ int flash_start_flashing(int enable_bl_writes, char *serial_port_name, uint32_t
|
||||||
return wait_for_ack(&resp);
|
return wait_for_ack(&resp);
|
||||||
} else {
|
} else {
|
||||||
PrintAndLogEx(ERR, _RED_("====================== OBS ! ========================================"));
|
PrintAndLogEx(ERR, _RED_("====================== OBS ! ========================================"));
|
||||||
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new" _YELLOW_("START_FLASH") " command"));
|
PrintAndLogEx(ERR, _RED_("Note: Your bootloader does not understand the new " _YELLOW_("START_FLASH") _RED_("command")));
|
||||||
flash_suggest_update_bootloader();
|
flash_suggest_update_bootloader();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue