Skip to content

Commit 132421c

Browse files
committed
Fixed password lenght
1 parent 3ddfa2d commit 132421c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basic_example/user/user_main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ user_init()
3232

3333
//Set ap settings
3434
os_memcpy(&stationConf.ssid, ssid, 32);
35-
os_memcpy(&stationConf.password, password, 32);
35+
os_memcpy(&stationConf.password, password, 64);
3636
wifi_station_set_config(&stationConf);
3737

3838
//Start os task

0 commit comments

Comments
 (0)