support UART write on ESP32-S2-based boards

This commit is contained in:
King Kévin 2022-07-23 12:44:17 +02:00
parent ed6ad9f9ca
commit d8b4a5a342
1 changed files with 1 additions and 0 deletions

View File

@ -159,6 +159,7 @@ int board_uart_read(uint8_t* buf, int len)
// Send characters to UART
int board_uart_write(void const * buf, int len)
{
esp_rom_printf(buf);
(void) buf; (void) len;
return 0;
}