mirror of
https://github.com/esphome/esphome.git
synced 2026-09-11 15:27:33 +00:00
167 lines
5.0 KiB
C++
167 lines
5.0 KiB
C++
#ifdef USE_ESP32
|
|
#include "logger.h"
|
|
|
|
#include "esphome/components/esp32/crash_handler.h"
|
|
#include <esp_log.h>
|
|
#include <esp_idf_version.h>
|
|
|
|
#include <driver/uart.h>
|
|
#include <soc/soc_caps.h>
|
|
|
|
#ifdef USE_LOGGER_UART_SELECTION_USB_SERIAL_JTAG
|
|
#include <driver/usb_serial_jtag.h>
|
|
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
|
|
#include <esp_vfs_dev.h>
|
|
#include <esp_vfs_usb_serial_jtag.h>
|
|
#else
|
|
#include <driver/usb_serial_jtag_vfs.h>
|
|
#endif
|
|
#endif
|
|
#if defined(CONFIG_PM_ENABLE) && defined(CONFIG_FREERTOS_USE_TICKLESS_IDLE) && \
|
|
(ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(6, 0, 0))
|
|
#include "esp_sleep.h"
|
|
#endif
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include <fcntl.h>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::logger {
|
|
|
|
static const char *const TAG = "logger";
|
|
|
|
#ifdef USE_LOGGER_UART_SELECTION_USB_SERIAL_JTAG
|
|
static void init_usb_serial_jtag() {
|
|
setvbuf(stdin, NULL, _IONBF, 0); // Disable buffering on stdin
|
|
|
|
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
|
|
// Minicom, screen, idf_monitor send CR when ENTER key is pressed
|
|
esp_vfs_dev_usb_serial_jtag_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
|
|
// Move the caret to the beginning of the next line on '\n'
|
|
esp_vfs_dev_usb_serial_jtag_set_tx_line_endings(ESP_LINE_ENDINGS_CRLF);
|
|
#else
|
|
// Minicom, screen, idf_monitor send CR when ENTER key is pressed
|
|
usb_serial_jtag_vfs_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
|
|
// Move the caret to the beginning of the next line on '\n'
|
|
usb_serial_jtag_vfs_set_tx_line_endings(ESP_LINE_ENDINGS_CRLF);
|
|
#endif
|
|
|
|
// Enable non-blocking mode on stdin and stdout
|
|
fcntl(fileno(stdout), F_SETFL, 0);
|
|
fcntl(fileno(stdin), F_SETFL, 0);
|
|
|
|
usb_serial_jtag_driver_config_t usb_serial_jtag_config{};
|
|
usb_serial_jtag_config.rx_buffer_size = 512;
|
|
usb_serial_jtag_config.tx_buffer_size = 512;
|
|
|
|
esp_err_t ret = ESP_OK;
|
|
// Install USB-SERIAL-JTAG driver for interrupt-driven reads and writes
|
|
ret = usb_serial_jtag_driver_install(&usb_serial_jtag_config);
|
|
if (ret != ESP_OK) {
|
|
return;
|
|
}
|
|
|
|
// Tell vfs to use usb-serial-jtag driver
|
|
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
|
|
esp_vfs_usb_serial_jtag_use_driver();
|
|
#else
|
|
usb_serial_jtag_vfs_use_driver();
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
void init_uart(uart_port_t uart_num, uint32_t baud_rate, int tx_buffer_size) {
|
|
uart_config_t uart_config{};
|
|
uart_config.baud_rate = (int) baud_rate;
|
|
uart_config.data_bits = UART_DATA_8_BITS;
|
|
uart_config.parity = UART_PARITY_DISABLE;
|
|
uart_config.stop_bits = UART_STOP_BITS_1;
|
|
uart_config.flow_ctrl = UART_HW_FLOWCTRL_DISABLE;
|
|
#if SOC_UART_SUPPORT_XTAL_CLK
|
|
uart_config.source_clk = UART_SCLK_XTAL;
|
|
#else
|
|
uart_config.source_clk = UART_SCLK_DEFAULT;
|
|
#endif
|
|
uart_param_config(uart_num, &uart_config);
|
|
// The logger only writes to UART, never reads, so use the minimum RX buffer.
|
|
// ESP-IDF requires rx_buffer_size > UART_HW_FIFO_LEN (128 bytes).
|
|
const int min_rx_buffer_size = UART_HW_FIFO_LEN(uart_num) + 1;
|
|
uart_driver_install(uart_num, min_rx_buffer_size, tx_buffer_size, 0, nullptr, 0);
|
|
#if defined(CONFIG_PM_ENABLE) && defined(CONFIG_FREERTOS_USE_TICKLESS_IDLE) && \
|
|
(ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(6, 0, 0))
|
|
// Always flush before going to light sleep. Could be disabled for devices
|
|
// without TOP_PD or if source_clk = UART_SCLK_RTC
|
|
esp_sleep_set_console_uart_handling_mode(ESP_SLEEP_ALWAYS_FLUSH_UART);
|
|
#endif
|
|
}
|
|
|
|
void Logger::pre_setup() {
|
|
if (this->baud_rate_ > 0) {
|
|
this->uart_num_ = UART_NUM_0;
|
|
switch (this->uart_) {
|
|
case UART_SELECTION_UART0:
|
|
this->uart_num_ = UART_NUM_0;
|
|
init_uart(this->uart_num_, baud_rate_, ESPHOME_LOGGER_TX_BUFFER_SIZE);
|
|
break;
|
|
case UART_SELECTION_UART1:
|
|
this->uart_num_ = UART_NUM_1;
|
|
init_uart(this->uart_num_, baud_rate_, ESPHOME_LOGGER_TX_BUFFER_SIZE);
|
|
break;
|
|
#ifdef USE_ESP32_VARIANT_ESP32
|
|
case UART_SELECTION_UART2:
|
|
this->uart_num_ = UART_NUM_2;
|
|
init_uart(this->uart_num_, baud_rate_, ESPHOME_LOGGER_TX_BUFFER_SIZE);
|
|
break;
|
|
#endif
|
|
#ifdef USE_LOGGER_USB_CDC
|
|
case UART_SELECTION_USB_CDC:
|
|
break;
|
|
#endif
|
|
#ifdef USE_LOGGER_USB_SERIAL_JTAG
|
|
case UART_SELECTION_USB_SERIAL_JTAG:
|
|
#ifdef USE_LOGGER_UART_SELECTION_USB_SERIAL_JTAG
|
|
init_usb_serial_jtag();
|
|
#endif
|
|
break;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
global_logger = this;
|
|
esp_log_set_vprintf(esp_idf_log_vprintf_);
|
|
|
|
ESP_LOGI(TAG, "Log initialized");
|
|
#ifdef USE_ESP32_CRASH_HANDLER
|
|
esp32::crash_handler_log();
|
|
#endif
|
|
}
|
|
|
|
const LogString *Logger::get_uart_selection_() {
|
|
switch (this->uart_) {
|
|
case UART_SELECTION_UART0:
|
|
return LOG_STR("UART0");
|
|
case UART_SELECTION_UART1:
|
|
return LOG_STR("UART1");
|
|
#ifdef USE_ESP32_VARIANT_ESP32
|
|
case UART_SELECTION_UART2:
|
|
return LOG_STR("UART2");
|
|
#endif
|
|
#ifdef USE_LOGGER_USB_CDC
|
|
case UART_SELECTION_USB_CDC:
|
|
return LOG_STR("USB_CDC");
|
|
#endif
|
|
#ifdef USE_LOGGER_USB_SERIAL_JTAG
|
|
case UART_SELECTION_USB_SERIAL_JTAG:
|
|
return LOG_STR("USB_SERIAL_JTAG");
|
|
#endif
|
|
default:
|
|
return LOG_STR("UNKNOWN");
|
|
}
|
|
}
|
|
|
|
} // namespace esphome::logger
|
|
#endif
|