Merge branch 'bugfix/print_ready_after_init_transaction_forv4.3' into 'release/v4.3'

ble_mesh:change the location of print ready(v4.3)

See merge request espressif/esp-idf!19029
This commit is contained in:
Island
2022-07-14 17:28:11 +08:00

View File

@@ -71,7 +71,6 @@ void app_main(void)
#else
repl_config.prompt = "esp32>";
#endif
printf("!!!ready!!!\n");
// init console REPL environment
ESP_ERROR_CHECK(esp_console_new_repl_uart(&uart_config, &repl_config, &repl));
@@ -88,7 +87,7 @@ void app_main(void)
#if (CONFIG_BLE_MESH_CFG_CLI)
ble_mesh_register_configuration_client_model();
#endif
printf("!!!ready!!!\n");
// start console REPL
ESP_ERROR_CHECK(esp_console_start_repl(repl));
}