mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 20:16:55 +03:00
26 lines
480 B
C
26 lines
480 B
C
#ifndef SERVER_MAIN_H
|
|
#define SERVER_MAIN_H
|
|
|
|
#include <esp_wifi.h>
|
|
#include <esp_event.h>
|
|
#include <esp_log.h>
|
|
#include <esp_system.h>
|
|
#include <nvs_flash.h>
|
|
#include <sys/param.h>
|
|
#include "nvs_flash.h"
|
|
#include "tcpip_adapter.h"
|
|
#include "esp_eth.h"
|
|
|
|
|
|
#include <esp_http_server.h>
|
|
|
|
static const char *TAG = "server-main";
|
|
|
|
extern httpd_handle_t server;
|
|
|
|
httpd_handle_t start_webserver(void);
|
|
|
|
void register_server_main_uri(httpd_handle_t server, const char *base_path);
|
|
|
|
#endif
|