mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-10 15:32:41 -07:00
show device name during flashing and change advice on hanging
This commit is contained in:
parent
0a85b72549
commit
e12b82d362
3 changed files with 14 additions and 11 deletions
|
@ -306,7 +306,7 @@ static int get_proxmark_state(uint32_t *state)
|
|||
}
|
||||
|
||||
// Enter the bootloader to be able to start flashing
|
||||
static int enter_bootloader(void)
|
||||
static int enter_bootloader(char *serial_port_name)
|
||||
{
|
||||
uint32_t state;
|
||||
|
||||
|
@ -340,7 +340,8 @@ static int enter_bootloader(void)
|
|||
msleep(100);
|
||||
CloseProxmark();
|
||||
|
||||
fprintf(stderr,"Waiting for Proxmark to reappear on USB...");
|
||||
fprintf(stderr,"Waiting for Proxmark to reappear on ");
|
||||
fprintf(stderr,serial_port_name);
|
||||
do {
|
||||
sleep(1);
|
||||
fprintf(stderr, ".");
|
||||
|
@ -366,11 +367,11 @@ static int wait_for_ack(void)
|
|||
}
|
||||
|
||||
// Go into flashing mode
|
||||
int flash_start_flashing(int enable_bl_writes)
|
||||
int flash_start_flashing(int enable_bl_writes,char *serial_port_name)
|
||||
{
|
||||
uint32_t state;
|
||||
|
||||
if (enter_bootloader() < 0)
|
||||
if (enter_bootloader(serial_port_name) < 0)
|
||||
return -1;
|
||||
|
||||
if (get_proxmark_state(&state) < 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue