mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-26 03:35:20 +00:00
h4 wiced: check CTS before sending with manual control
This commit is contained in:
parent
0290598a44
commit
a3be5a335e
@ -165,6 +165,13 @@ static wiced_result_t h4_rx_worker_receive_packet(void * arg){
|
|||||||
|
|
||||||
// executed on tx worker thread
|
// executed on tx worker thread
|
||||||
static wiced_result_t h4_tx_worker_send_packet(void * arg){
|
static wiced_result_t h4_tx_worker_send_packet(void * arg){
|
||||||
|
#ifdef WICED_BT_UART_MANUAL_CTS_RTS
|
||||||
|
while (platform_gpio_input_get(wiced_bt_uart_pins[WICED_BT_PIN_UART_CTS]) == WICED_TRUE){
|
||||||
|
printf(".");
|
||||||
|
wiced_rtos_delay_milliseconds(10);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
#endif
|
||||||
// blocking send
|
// blocking send
|
||||||
platform_uart_transmit_bytes(wiced_bt_uart_driver, tx_worker_data_buffer, tx_worker_data_size);
|
platform_uart_transmit_bytes(wiced_bt_uart_driver, tx_worker_data_buffer, tx_worker_data_size);
|
||||||
// let stack know
|
// let stack know
|
||||||
|
Loading…
x
Reference in New Issue
Block a user