Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
5ec2b695
Commit
5ec2b695
authored
Jan 28, 2016
by
Johny Mattsson
Browse files
Merge pull request #981 from jfollas/dev
Fixed issue where default ESP_xxxxxx SSID was appearing
parents
c3e49940
edbcbe1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/modules/enduser_setup.c
View file @
5ec2b695
...
...
@@ -665,8 +665,8 @@ static void enduser_setup_ap_start(void)
cnf
.
ssid_hidden
=
0
;
cnf
.
max_connection
=
5
;
cnf
.
beacon_interval
=
100
;
wifi_set_opmode
(
SOFTAP_MODE
|
wifi_get_opmode
());
// Changed behavior: Need to be in AP mode before AP config will save
wifi_softap_set_config
(
&
cnf
);
wifi_set_opmode
(
SOFTAP_MODE
|
wifi_get_opmode
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment