diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-09-04 22:25:39 +0200 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-09-04 22:25:39 +0200 |
| commit | 1ba21da6cbc63c0c549fb92731e25bedc482eb51 (patch) | |
| tree | ddf6fc2259a2495f8de336a07873cc3c6796785e /firmware/include/wifi.h | |
| parent | e00f3a9ede1b8e46b480bd68daf48da0bb08acae (diff) | |
| download | e1-1ba21da6cbc63c0c549fb92731e25bedc482eb51.tar.gz e1-1ba21da6cbc63c0c549fb92731e25bedc482eb51.zip | |
Unify the directory, add new analysis methods, unify the code style
Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to 'firmware/include/wifi.h')
| -rw-r--r-- | firmware/include/wifi.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/firmware/include/wifi.h b/firmware/include/wifi.h new file mode 100644 index 0000000..bdcbe76 --- /dev/null +++ b/firmware/include/wifi.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef WIFI_H | ||
| 2 | #define WIFI_H | ||
| 3 | |||
| 4 | #include "esp_wifi.h" | ||
| 5 | #include "wifi_scan.h" | ||
| 6 | |||
| 7 | /** | ||
| 8 | * @brief Initializes the WiFi interface in station mode. | ||
| 9 | * | ||
| 10 | * Sets up the default WiFi station network interface, | ||
| 11 | * initializes the WiFi driver with default configurations, | ||
| 12 | * starts WiFi, scans for available networks, and connects to | ||
| 13 | * the configured SSID and password. | ||
| 14 | */ | ||
| 15 | void wifi_init_sta(void); | ||
| 16 | |||
| 17 | #endif | ||
