Files
AI-on-the-edge-device/code/components/jomjol_network/network_init.h
michael 4905663933 test1
2026-01-17 02:49:32 +01:00

26 lines
463 B
C

#pragma once
#ifndef NETWORK_INIT_H
#define NETWORK_INIT_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 "esp_netif.h"
#include "esp_eth.h"
#include <esp_http_server.h>
// extern httpd_handle_t my_httpd_server;
esp_err_t init_network(void);
esp_err_t init_webserver(void);
esp_err_t init_remote_server(void);
#endif // NETWORK_INIT_H