chore: import local project into Gitea

This commit is contained in:
2026-05-20 10:04:07 -07:00
commit 3b6255b777
6 changed files with 777 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
idf_component_register(SRCS "proxarch_main.c"
INCLUDE_DIRS ".")
# Required for esp_http_server, esp_wifi, nvs_flash, esp_netif, esp_event, esp_log, freertos, lwip
set(requires esp_http_server esp_wifi nvs_flash esp_netif esp_event esp_log freertos lwip)
# Required for TinyUSB
list(APPEND requires tinyusb)
# If you use SPIFFS for web files later, add:
# list(APPEND requires spiffs)
target_link_libraries(${COMPONENT_TARGET} PRIVATE
${requires}
)