1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/esp32: use ets_printf instead of puts in startup

This commit is contained in:
Gunar Schorcht 2023-03-24 15:42:44 +01:00
parent 9719bbf432
commit 610512b4c3

View File

@ -322,7 +322,7 @@ static NORETURN void IRAM system_init (void)
LOG_STARTUP("Starting RIOT kernel on PRO cpu\n");
esp_rom_uart_tx_wait_idle(CONFIG_ESP_CONSOLE_UART_NUM);
#else
puts("");
ets_printf("\n");
#endif
kernel_init();
UNREACHABLE();