diff --git a/components/ieee802154/test_apps/test_ieee802154/main/CMakeLists.txt b/components/ieee802154/test_apps/test_ieee802154/main/CMakeLists.txt index c5dfe1a8c3..625a6175c9 100644 --- a/components/ieee802154/test_apps/test_ieee802154/main/CMakeLists.txt +++ b/components/ieee802154/test_apps/test_ieee802154/main/CMakeLists.txt @@ -8,6 +8,5 @@ set(include "." # the component can be registered as WHOLE_ARCHIVE idf_component_register(SRCS ${srcs} INCLUDE_DIRS include - PRIV_REQUIRES ieee802154 console fatfs nvs_flash esp_phy cmd_ieee802154 - cmd_ieee802154_debug cmd_system + PRIV_REQUIRES ieee802154 console fatfs nvs_flash esp_phy WHOLE_ARCHIVE) diff --git a/components/ieee802154/test_apps/test_ieee802154/main/test_app_main.c b/components/ieee802154/test_apps/test_ieee802154/main/test_app_main.c index 3101372e38..5436e625bc 100644 --- a/components/ieee802154/test_apps/test_ieee802154/main/test_app_main.c +++ b/components/ieee802154/test_apps/test_ieee802154/main/test_app_main.c @@ -15,8 +15,6 @@ #include "esp_ieee802154.h" #include "esp_phy_init.h" #include "ieee802154_cmd.h" -#include "cmd_system.h" -#include "ieee802154_debug.h" #define PROMPT_STR "ieee802154" @@ -46,10 +44,6 @@ void app_main(void) /* Register commands */ esp_console_register_help_command(); register_ieee802154_cmd(); - register_system_common(); -#if CONFIG_IEEE802154_DEBUG - register_ieee802154_debug_cmd(); -#endif esp_console_dev_uart_config_t hw_config = ESP_CONSOLE_DEV_UART_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_console_new_repl_uart(&hw_config, &repl_config, &repl)); diff --git a/examples/ieee802154/ieee802154_cli/main/idf_component.yml b/examples/ieee802154/ieee802154_cli/main/idf_component.yml deleted file mode 100644 index 670c948277..0000000000 --- a/examples/ieee802154/ieee802154_cli/main/idf_component.yml +++ /dev/null @@ -1,6 +0,0 @@ -## IDF Component Manager Manifest File -dependencies: - cmd_system: - path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_system - cmd_ieee802154_debug: - path: ${IDF_PATH}/examples/ieee802154/components/cmd_ieee802154_debug