fix(firmware): add led.c to CMakeLists SRCS

led.c was missing from the build, causing undefined reference errors
for led_init, led_stop_blink, and led_blink_identify at link time.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-04-14 15:15:06 -04:00
parent 432076a6d9
commit ab47adc88a

View file

@ -7,6 +7,7 @@ idf_component_register(
"provision.c"
"nvs_migration.c"
"ntp.c"
"led.c"
INCLUDE_DIRS "." "${CMAKE_BINARY_DIR}/spaxel-firmware/main"
REQUIRES esp_wifi esp_netif nvs_flash mdns esp_http_client esp_timer bt driver log esp_http_server mbedtls esp_ota
)