Merge pull request #434 from gh2o/master

Add TX callback to CDC device
This commit is contained in:
Ha Thach
2020-08-21 11:14:06 +07:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -133,6 +133,9 @@ TU_ATTR_WEAK void tud_cdc_rx_cb(uint8_t itf);
// Invoked when received `wanted_char`
TU_ATTR_WEAK void tud_cdc_rx_wanted_cb(uint8_t itf, char wanted_char);
// Invoked when space becomes available in TX buffer
TU_ATTR_WEAK void tud_cdc_tx_complete_cb(uint8_t itf);
// Invoked when line state DTR & RTS are changed via SET_CONTROL_LINE_STATE
TU_ATTR_WEAK void tud_cdc_line_state_cb(uint8_t itf, bool dtr, bool rts);