initial commit

This commit is contained in:
Mikkeli Matlock
2026-02-15 02:48:59 +09:00
commit 19db125619
258 changed files with 345581 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
set(COMPONENT_PRIV_REQUIRE driver esp_codec_dev fatfs esp_lcd)
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER_EQUAL "5.3")
list(APPEND COMPONENT_PRIV_REQUIRE esp_driver_i2c)
endif()
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER_EQUAL "5.3")
list(APPEND COMPONENT_PRIV_REQUIRE esp_driver_i2c)
endif()
idf_component_register(SRCS "cfg_parse.c" "codec_board.c" "codec_init.c" "dummy_codec.c"
"lcd_init.c" "drv/tca9554.c"
INCLUDE_DIRS ./include
PRIV_INCLUDE_DIRS drv
REQUIRES "${COMPONENT_PRIV_REQUIRE}"
EMBED_TXTFILES "board_cfg.txt")