mirror of
https://codeberg.org/opentrafficmap/its-g5-receiver-firmware.git
synced 2026-08-01 01:34:51 +00:00
Add config system; auto-start/stop mqtt on eth up/down; first attempt of sending received packets over MQTT
This commit is contained in:
+22
-8
@@ -1,9 +1,23 @@
|
||||
idf_component_register(SRCS "main.c"
|
||||
"cmd_sniffer.c"
|
||||
"cmd_pcap.c"
|
||||
"ethernet.c"
|
||||
"sdcard.c"
|
||||
"spi.c"
|
||||
PRIV_REQUIRES console esp_wifi fatfs esp_eth app_trace nvs_flash
|
||||
INCLUDE_DIRS ".")
|
||||
idf_component_register(
|
||||
SRCS
|
||||
"main.c"
|
||||
"cmd_sniffer.c"
|
||||
"cmd_pcap.c"
|
||||
"config.c"
|
||||
"ethernet.c"
|
||||
"events.c"
|
||||
"mqtt.c"
|
||||
"sdcard.c"
|
||||
"spi.c"
|
||||
PRIV_REQUIRES
|
||||
app_trace
|
||||
console
|
||||
esp_eth
|
||||
esp_netif
|
||||
esp_wifi
|
||||
fatfs
|
||||
nvs_flash
|
||||
INCLUDE_DIRS
|
||||
"."
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user