ESP32 V2X-Sniffer: esp-firmware und v2x_fw hinzugefügt (24 Dateien)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
idf_component_register(
|
||||
SRCS "v2x_driver.c"
|
||||
INCLUDE_DIRS "."
|
||||
)
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user