2021-11-06 05:21:57 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-07-21 01:07:34 -04:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2021-01-26 08:07:22 -05:00
|
|
|
#include <stdbool.h>
|
2020-07-21 01:07:34 -04:00
|
|
|
#include "esp_attr.h"
|
|
|
|
|
2020-04-15 04:46:10 -04:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2020-07-21 01:07:34 -04:00
|
|
|
IRAM_ATTR void esp_rom_install_channel_putc(int channel, void (*putc)(char c))
|
|
|
|
{
|
|
|
|
extern void ets_install_putc1(void (*p)(char c));
|
|
|
|
extern void ets_install_putc2(void (*p)(char c));
|
|
|
|
switch (channel) {
|
|
|
|
case 1:
|
|
|
|
ets_install_putc1(putc);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
ets_install_putc2(putc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 04:46:10 -04:00
|
|
|
|
2021-11-06 05:21:57 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP8684
|
2021-01-26 08:07:22 -05:00
|
|
|
IRAM_ATTR void esp_rom_install_uart_printf(void)
|
2020-04-15 04:46:10 -04:00
|
|
|
{
|
2021-01-26 08:07:22 -05:00
|
|
|
extern void ets_install_uart_printf(void);
|
|
|
|
extern bool g_uart_print;
|
|
|
|
// If ROM log is disabled permanently via eFuse or temporarily via RTC storage register,
|
|
|
|
// this ROM symbol will be set to false, and cause ``esp_rom_printf`` can't work on esp-idf side.
|
|
|
|
g_uart_print = true;
|
|
|
|
ets_install_uart_printf();
|
2020-04-15 04:46:10 -04:00
|
|
|
}
|
2021-01-26 08:07:22 -05:00
|
|
|
#endif
|