mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-29 13:20:39 +00:00
wiced: only print dot if we're waiting for CTS
This commit is contained in:
parent
401a70243a
commit
d8f374f670
@ -178,11 +178,15 @@ static wiced_result_t h4_rx_worker_receive_packet(void * arg){
|
||||
// executed on tx worker thread
|
||||
static wiced_result_t h4_tx_worker_send_packet(void * arg){
|
||||
#ifdef WICED_BT_UART_MANUAL_CTS_RTS
|
||||
int cts_was_raised = 0;
|
||||
while (platform_gpio_input_get(wiced_bt_uart_pins[WICED_BT_PIN_UART_CTS]) == WICED_TRUE){
|
||||
printf(".");
|
||||
wiced_rtos_delay_milliseconds(10);
|
||||
log_info(".");
|
||||
wiced_rtos_delay_milliseconds(100);
|
||||
cts_was_raised = 1;
|
||||
}
|
||||
if (cts_was_raised){
|
||||
printf("\n");
|
||||
}
|
||||
printf("\n");
|
||||
#endif
|
||||
// blocking send
|
||||
platform_uart_transmit_bytes(wiced_bt_uart_driver, tx_worker_data_buffer, tx_worker_data_size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user