Initialize git

This commit is contained in:
Kazimierz Ciołek
2026-02-25 01:56:31 +01:00
commit f17984820f
699 changed files with 276407 additions and 0 deletions

22
hal/esp32/wifi_server.h Normal file
View File

@@ -0,0 +1,22 @@
/**
* @file wifi_server.h
* @brief WiFi Access Point + WebServer for time sync and notes management
*/
#ifndef WIFI_SERVER_H
#define WIFI_SERVER_H
#ifdef __cplusplus
extern "C" {
#endif
void wifi_server_start(void);
void wifi_server_stop(void);
void wifi_server_handle(void);
bool wifi_server_is_running(void);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* WIFI_SERVER_H */