Couldn't just call the component "console" as that conflicted with the ESP-IDF component, so opted for "console-wrapper".
6 lines
94 B
CMake
6 lines
94 B
CMake
idf_component_register(
|
|
SRCS "console.c"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES console esp_system
|
|
)
|