Add usart dev cmds & dynamic flash support capability

This commit is contained in:
Philippe Teuwen
2019-05-03 22:30:17 +02:00
parent 8e2d5370f9
commit 3176684f4a
18 changed files with 185 additions and 205 deletions

View File

@@ -296,7 +296,7 @@ Empirically measured delay (FTDI cable) with "hw pingng 512" :
9600 -> 1100..1150ms
(client/comms.c)
static size_t communication_delay(void) {
if (conn.send_via_fpc) // needed also for Windows USB USART??
if (conn.send_via_fpc_usart) // needed also for Windows USB USART??
return 2 * (12000000 / uart_speed);
return 100;
}