mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-16 03:52:13 +02:00
feat(console): Added runtime component registration support in console_simple_init
This commit is contained in:
@ -30,6 +30,9 @@ void app_main(void)
|
||||
// Register user command
|
||||
ESP_ERROR_CHECK(console_cmd_user_register("user", do_user_cmd));
|
||||
|
||||
// Register all the plugin commands added to this example
|
||||
ESP_ERROR_CHECK(console_cmd_all_register());
|
||||
|
||||
// start console REPL
|
||||
ESP_ERROR_CHECK(console_cmd_start());
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
dependencies:
|
||||
idf:
|
||||
version: '*'
|
||||
version: ">=5.0"
|
||||
console_simple_init:
|
||||
version: "*"
|
||||
override_path: '../../../'
|
||||
|
Reference in New Issue
Block a user