usb_serial_jtag: support usb_serial_jtag on esp32c3

USB serial/jtag controller: Add vfs (logging/printf), panic handler, gdb support.

See merge request espressif/esp-idf!12925
This commit is contained in:
Jeroen Domburg
2021-04-28 08:38:31 +00:00
committed by Cao Sen Miao
parent ba15ac8634
commit d6cdb3e0ae
29 changed files with 2099 additions and 51 deletions

View File

@@ -119,6 +119,11 @@ void esp_gdbstub_putchar(int c);
*/
int esp_gdbstub_readmem(intptr_t addr);
/**
* Make sure all bytes sent using putchar() end up at the host.
* (Usually stubbed for UART, but can be useful for other channels)
*/
void esp_gdbstub_flush(void);
/**** GDB packet related functions ****/