23 lines
391 B
C
23 lines
391 B
C
/**
|
|
* @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 */
|