main/config.h

changeset 80
715785443a95
parent 77
15dc572a7fcb
--- a/main/config.h	Tue Oct 03 19:55:34 2023 +0200
+++ b/main/config.h	Wed Oct 04 11:28:49 2023 +0200
@@ -115,39 +115,6 @@
 
 
 /**
- * @brief Records with WiFi stations we have succesfully connected.
- */
-typedef struct {
-    char        SSID[32];                       ///< Station SSID
-    char        Password[64];                   ///< Station password
-    bool        xhide;                          ///< Hide from AP scan.
-} wifiStation_t;                                  ///< Station record.
-
-
-/**
- * @brief Add a new station record.
- * @param SSID The SSID
- * @param Password The password for this SSID
- * @return The record number, or -1 if error.
- */
-int add_station(uint8_t *SSID, uint8_t *Password);
-
-/**
- * @brief Read station info record.
- * @param SSID Search for the SSID and load the record if found.
- * @return Return -1 if not found, else the record number and the wifiStation record is filled.
- */
-int read_station(uint8_t *SSID);
-
-/**
- * @brief Remove station record.
- * @param SSID The SSID to remove.
- */
-void remove_station(uint8_t *SSID);
-
-
-
-/**
  * @brief Records that describes the carbonation units,
  */
 typedef struct {

mercurial