1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/tinyusb/cdc_acm_stdio: support usb_board_reset

This commit is contained in:
Gunar Schorcht 2022-12-04 16:55:16 +01:00
parent 4b328203d2
commit 6aa267c4b5

View File

@ -34,6 +34,7 @@
#ifdef MODULE_USB_BOARD_RESET
#include "usb_board_reset_internal.h"
#include "class/cdc/cdc.h"
#endif
static mutex_t data_lock = MUTEX_INIT_LOCKED;
@ -80,3 +81,21 @@ void tud_cdc_rx_cb(uint8_t itf)
mutex_unlock(&data_lock);
}
#ifdef MODULE_USB_BOARD_RESET
void tud_cdc_line_coding_cb(uint8_t itf, cdc_line_coding_t const* p_line_coding)
{
(void)itf;
assert(p_line_coding != NULL);
/* The first parameter is the USBUS CDC ACM device, but this is
* not used in `usb_board_reset_coding_cb`. Therefore we can simply
* reuse this callback function in tinyUSB without any problems. */
usb_board_reset_coding_cb(NULL,
p_line_coding->bit_rate,
p_line_coding->data_bits,
p_line_coding->parity,
p_line_coding->stop_bits);
}
#endif