Chat freely about anything...

User avatar
By scargill
#3485 The OS memset you did - where did you insert this.. I have this code..

#ifdef SOFTAP_ENCRYPT
struct softap_config config;
char password[33];
char macaddr[6];

wifi_softap_get_config(&config);
wifi_get_macaddr(SOFTAP_IF, macaddr);

os_memset(config.password, 0, sizeof(config.password));
// os_sprintf(password, MACSTR "_%s", MAC2STR(macaddr), PASSWORD);
os_sprintf(password, "%s", PASSWORD);
os_memcpy(config.password, password, os_strlen(password));
config.authmode = AUTH_WPA_WPA2_PSK;

wifi_softap_set_config(&config);
#endif