mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-17 13:08:40 +03:00
work on GPIO handling
This commit is contained in:
6
code/main/defines.h
Normal file
6
code/main/defines.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#ifndef defines_h
|
||||
#define defines_h
|
||||
|
||||
#define CONFIG_FILE "/sdcard/config/config.ini"
|
||||
|
||||
#endif // ifndef defines_h
|
||||
@@ -3,6 +3,7 @@
|
||||
#include "freertos/task.h"
|
||||
#include "freertos/event_groups.h"
|
||||
|
||||
#include "defines.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "sdkconfig.h"
|
||||
|
||||
@@ -41,6 +42,8 @@ static const char *TAGMAIN = "connect_wlan_main";
|
||||
|
||||
#define FLASH_GPIO GPIO_NUM_4
|
||||
|
||||
GpioHandler *gpioHandler = NULL;
|
||||
|
||||
bool Init_NVS_SDCard()
|
||||
{
|
||||
esp_err_t ret = nvs_flash_init();
|
||||
@@ -201,7 +204,7 @@ extern "C" void app_main(void)
|
||||
register_server_ota_sdcard_uri(server);
|
||||
|
||||
#ifdef __SD_USE_ONE_LINE_MODE__
|
||||
register_server_GPIO_uri(server);
|
||||
gpioHandler = new GpioHandler(CONFIG_FILE, server);
|
||||
#endif
|
||||
printf("vor reg server main\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user