chg: USB doesnt need extra delay

This commit is contained in:
iceman1001 2019-05-29 04:00:02 -04:00
commit b378d373ad

View file

@ -669,7 +669,7 @@ void CloseProxmark(void) {
static size_t communication_delay(void) { static size_t communication_delay(void) {
if (conn.send_via_fpc_usart) // needed also for Windows USB USART?? if (conn.send_via_fpc_usart) // needed also for Windows USB USART??
return 2 * (12000000 / conn.uart_speed); return 2 * (12000000 / conn.uart_speed);
return 100; return 0;
} }
/** /**