16 lines
372 B
C
16 lines
372 B
C
#ifndef WIFI_MANAGER_H
|
|
#define WIFI_MANAGER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "esp_err.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "config_store.h"
|
|
|
|
esp_err_t wifi_manager_init(void);
|
|
esp_err_t wifi_manager_start_sta(const wifi_settings_t *cfg);
|
|
bool wifi_manager_wait_connected(TickType_t timeout_ticks);
|
|
bool wifi_manager_is_connected(void);
|
|
|
|
#endif /* WIFI_MANAGER_H */ |