Added console with one command (so far): log (#11)

Co-authored-by: Joe Kearney <joe@clubk.club>
Reviewed-on: #11
This commit is contained in:
Joe Kearney 2026-01-10 22:49:51 +00:00
parent c8f6bf24fc
commit 376acd4815
11 changed files with 494 additions and 19 deletions

View file

@ -0,0 +1,15 @@
idf_component_register(
SRCS
"Console.c"
"Commands/Log_Command.c"
INCLUDE_DIRS
"."
"./Commands"
REQUIRES
"SystemK"
"System_Events"
"console"
"log"
"nvs_flash"
"vfs"
)