ESP8266 Developer Zone The Official ESP8266 Forum 2015-03-02T12:25:15+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=217 2015-03-02T12:25:15+08:00 2015-03-02T12:25:15+08:00 https://bbs.espressif.com:443/viewtopic.php?t=217&p=852#p852 <![CDATA[Re: Curl commands stop working after a few minutes]]> Statistics: Posted by ScottR — Mon Mar 02, 2015 12:25 pm


]]>
2015-02-25T15:33:30+08:00 2015-02-25T15:33:30+08:00 https://bbs.espressif.com:443/viewtopic.php?t=217&p=809#p809 <![CDATA[Re: Curl commands stop working after a few minutes]]>
Thanks for your interest in ESP8266 !

Could you offer us you test code about this curl problem ?

you can call wifi_softap_set_config in user_init to set ssid

Code:

        struct softap_config config;

        wifi_softap_get_config(&config);

        os_memset(config.ssid, 0, sizeof(config.ssid));
        os_memcpy(config.ssid, "abc", 3);

        config.ssid_len = 3; // or 0

        wifi_softap_set_config(&config);

Statistics: Posted by ESP_Faye — Wed Feb 25, 2015 3:33 pm


]]>
2015-02-20T22:18:25+08:00 2015-02-20T22:18:25+08:00 https://bbs.espressif.com:443/viewtopic.php?t=217&p=784#p784 <![CDATA[Curl commands stop working after a few minutes]]>
I'm wondering if anyone else has experienced or noticed this. Any suggestions?

Also, is there a way to change the default SSID in the SDK? i can do it with curl after power on but can it be changed to flash a different SSID?

Statistics: Posted by ScottR — Fri Feb 20, 2015 10:18 pm


]]>