ESP32 V2X-Sniffer: esp-firmware und v2x_fw hinzugefügt (24 Dateien)

This commit is contained in:
Clawdia
2026-05-07 14:43:27 +02:00
parent ba8477f18f
commit fdb4cca5d8
25 changed files with 3381 additions and 0 deletions
@@ -0,0 +1,9 @@
#include "esp_log.h"
#include "v2x_db.h"
static const char *TAG = "v2x_driver";
esp_err_t v2x_driver_init(void) {
ESP_LOGI(TAG, "V2X Driver initialisiert");
return ESP_OK;
}