fix(console): fixed CONSOLE_NONE not working on C2/C3

This commit is contained in:
Marius Vikhammer
2024-03-20 10:15:31 +08:00
parent aa6a7bec76
commit 42fc463c81
8 changed files with 24 additions and 8 deletions

View File

@@ -26,7 +26,9 @@ void unity_putc(int c)
void unity_flush(void)
{
esp_rom_output_tx_wait_idle(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM);
if(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM != -1) {
esp_rom_output_tx_wait_idle(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM);
}
}
#define iscontrol(c) ((c) <= '\x1f' || (c) == '\x7f')