add some code

This commit is contained in:
2025-09-05 13:25:11 +08:00
parent 9ff0a99e7a
commit 3cf1229a85
8911 changed files with 2535396 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
idf_component_register(
SRCS
"src/at_uart.cc"
"src/at_modem.cc"
"src/ec801e/ec801e_at_modem.cc"
"src/ec801e/ec801e_tcp.cc"
"src/ec801e/ec801e_ssl.cc"
"src/ec801e/ec801e_udp.cc"
"src/ec801e/ec801e_mqtt.cc"
"src/ml307/ml307_at_modem.cc"
"src/ml307/ml307_tcp.cc"
"src/ml307/ml307_ssl.cc"
"src/ml307/ml307_mqtt.cc"
"src/ml307/ml307_udp.cc"
"src/ml307/ml307_http.cc"
"src/esp/esp_network.cc"
"src/esp/esp_ssl.cc"
"src/esp/esp_tcp.cc"
"src/esp/esp_mqtt.cc"
"src/esp/esp_udp.cc"
"src/web_socket.cc"
"src/http_client.cc"
INCLUDE_DIRS
"include"
PRIV_INCLUDE_DIRS
"."
REQUIRES
"esp_driver_gpio"
"esp_driver_uart"
"esp-tls"
"pthread"
"mqtt"
)