We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33f721 commit 64b7fc9Copy full SHA for 64b7fc9
build/common.rs
@@ -32,6 +32,7 @@ const TOOLS_WORKSPACE_INSTALL_DIR: &str = ".embuild";
32
const ALL_COMPONENTS: &[&str] = &[
33
// TODO: Put all IDF components here
34
"comp_app_update_enabled",
35
+ "comp_console_enabled",
36
"comp_esp_adc_cal_enabled",
37
"comp_esp_eth_enabled",
38
"comp_esp_event_enabled",
src/include/esp-idf/bindings.h
@@ -16,6 +16,12 @@
16
#include "esp_interface.h"
17
#include "esp_ipc.h"
18
19
+#ifdef ESP_IDF_COMP_CONSOLE_ENABLED
20
+#include "esp_console.h"
21
+#include "linenoise/linenoise.h"
22
+#include "argtable3/argtable3.h"
23
+#endif
24
+
25
#ifdef ESP_IDF_COMP_ESP_PM_ENABLED
26
#include "esp_pm.h"
27
#endif
0 commit comments