1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

less static stuff

This commit is contained in:
Markus Sattler
2015-12-28 19:46:20 +01:00
parent 64326f9573
commit cee4ef3078
3 changed files with 7 additions and 6 deletions

View File

@ -164,7 +164,7 @@ bool wifi_set_opmode_current(uint8 opmode);
uint8 wifi_get_broadcast_if(void);
bool wifi_set_broadcast_if(uint8 interface);
struct bss_info {
typedef struct bss_info {
STAILQ_ENTRY(bss_info) next;
uint8 bssid[6];
@ -177,7 +177,7 @@ struct bss_info {
sint16 freq_offset;
sint16 freqcal_val;
uint8 *esp_mesh_ie;
};
} bss_info_t;
typedef struct _scaninfo {
STAILQ_HEAD(, bss_info) *pbss;