From 770075609f9cf66edd7602ec978253f541e4f411 Mon Sep 17 00:00:00 2001 From: Yuan Hong Hui Date: Wed, 13 Jul 2022 18:13:08 +0800 Subject: [PATCH] ble_mesh:change the location of print ready --- .../esp_ble_mesh/ble_mesh_console/main/ble_mesh_console_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_console_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_console_main.c index a9623d91d3..1ae11c8f9d 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_console_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_console_main.c @@ -67,7 +67,6 @@ void app_main(void) #endif repl_config.prompt = "esp32>"; - printf("!!!ready!!!\n"); // init console REPL environment ESP_ERROR_CHECK(esp_console_new_repl_uart(&uart_config, &repl_config, &repl)); @@ -85,6 +84,7 @@ void app_main(void) ble_mesh_register_configuration_client_model(); #endif + printf("!!!ready!!!\n"); // start console REPL ESP_ERROR_CHECK(esp_console_start_repl(repl)); } \ No newline at end of file