mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 05:34:32 +02:00
fix(light_sleep/example): fix potential compilation error in light_sleep example
If ESP_CONSOLE_NONE is selected in menuconfig, compilation fails with undefined CONFIG_ESP_CONSOLE_UART_BAUDRATE macro.
This commit is contained in:
@@ -14,12 +14,18 @@
|
|||||||
#include "driver/uart_wakeup.h"
|
#include "driver/uart_wakeup.h"
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
#define EXAMPLE_UART_NUM 0
|
#define EXAMPLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM
|
||||||
/* Notice that ESP32 has to use the iomux input to configure uart as wakeup source
|
/* Notice that ESP32 has to use the iomux input to configure uart as wakeup source
|
||||||
* Please use 'UxRXD_GPIO_NUM' as uart rx pin. No limitation to the other target */
|
* Please use 'UxRXD_GPIO_NUM' as uart rx pin. No limitation to the other target */
|
||||||
#define EXAMPLE_UART_TX_IO_NUM U0TXD_GPIO_NUM
|
#define EXAMPLE_UART_TX_IO_NUM U0TXD_GPIO_NUM
|
||||||
#define EXAMPLE_UART_RX_IO_NUM U0RXD_GPIO_NUM
|
#define EXAMPLE_UART_RX_IO_NUM U0RXD_GPIO_NUM
|
||||||
|
|
||||||
|
#if CONFIG_ESP_CONSOLE_UART
|
||||||
|
#define EXAMPLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
|
||||||
|
#else
|
||||||
|
#define EXAMPLE_UART_BAUDRATE 115200
|
||||||
|
#endif
|
||||||
|
|
||||||
#define EXAMPLE_UART_WAKEUP_EDGE_THRESHOLD 3
|
#define EXAMPLE_UART_WAKEUP_EDGE_THRESHOLD 3
|
||||||
#define EXAMPLE_UART_WAKEUP_FIFO_THRESHOLD 8
|
#define EXAMPLE_UART_WAKEUP_FIFO_THRESHOLD 8
|
||||||
#define EXAMPLE_UART_WAKEUP_CHARS_SEQ "ok"
|
#define EXAMPLE_UART_WAKEUP_CHARS_SEQ "ok"
|
||||||
@@ -103,7 +109,7 @@ static void uart_wakeup_task(void *arg)
|
|||||||
static void uart_initialization(void)
|
static void uart_initialization(void)
|
||||||
{
|
{
|
||||||
uart_config_t uart_cfg = {
|
uart_config_t uart_cfg = {
|
||||||
.baud_rate = CONFIG_ESP_CONSOLE_UART_BAUDRATE,
|
.baud_rate = EXAMPLE_UART_BAUDRATE,
|
||||||
.data_bits = UART_DATA_8_BITS,
|
.data_bits = UART_DATA_8_BITS,
|
||||||
.parity = UART_PARITY_DISABLE,
|
.parity = UART_PARITY_DISABLE,
|
||||||
.stop_bits = UART_STOP_BITS_1,
|
.stop_bits = UART_STOP_BITS_1,
|
||||||
|
Reference in New Issue
Block a user