From 19c73192ba757baed908c5a98dee7a1f68c5619e Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 30 Apr 2020 16:52:17 +0200 Subject: [PATCH] ble_mesh_coex_test: fix deprecated Kconfig option name --- examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/main.c index ff2c62b2ea..607aa4d2bb 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/main.c @@ -49,7 +49,7 @@ static void initialize_console(void) * correct while APB frequency is changing in light sleep mode. */ const uart_config_t uart_config = { - .baud_rate = CONFIG_CONSOLE_UART_BAUDRATE, + .baud_rate = CONFIG_ESP_CONSOLE_UART_BAUDRATE, .data_bits = UART_DATA_8_BITS, .parity = UART_PARITY_DISABLE, .stop_bits = UART_STOP_BITS_1,