X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/0a85b72549d294b127c3224610870be4f9382f9a..e12b82d362238b49d3b4b88ff7d7a1d7e618bac8:/client/flash.c diff --git a/client/flash.c b/client/flash.c index b59fff04..9f547915 100644 --- a/client/flash.c +++ b/client/flash.c @@ -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)