Skip to content

Commit

Permalink
Fixes ESP32-S2 CDC Debug Logging (espressif#7284)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuGlider committed Dec 20, 2023
1 parent 9d0274b commit edf5ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp32/USBCDC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void tud_cdc_tx_complete_cb(uint8_t itf){

static void ARDUINO_ISR_ATTR cdc0_write_char(char c){
if(devices[0] != NULL){
devices[0]->write(c);
tud_cdc_n_write_char(0, c);
}
}

Expand Down

0 comments on commit edf5ecf

Please sign in to comment.