Skip to content

Commit 1fe6ab7

Browse files
win stub
1 parent 01c0298 commit 1fe6ab7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/hal/win32/hal_wifi_win32.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,14 @@ void HAL_PrintNetworkInfo() {
7575
int HAL_GetWifiStrength() {
7676
return -1;
7777
}
78-
78+
char* HAL_GetWiFiBSSID(char* bssid) {
79+
strcpy(bssid, "30:B5:C2:5D:70:72");
80+
return bssid;
81+
};
82+
uint8_t HAL_GetWiFiChannel(uint8_t *chan) {
83+
*chan = 0;
84+
return *chan;
85+
};
7986
const char *HAL_GetMyIPString() {
8087
strcpy(g_ipStr,"127.0.0.1");
8188
return g_ipStr;

0 commit comments

Comments
 (0)