Statistics: Posted by john_m — Mon Mar 05, 2018 2:04 pm
john_m wrote:The issue is now resolved after configuring the Crystal Frequency as 26M.
Thanks AgentSmithers for your suggestions
Statistics: Posted by john_m — Fri Mar 02, 2018 1:44 pm
Statistics: Posted by AgentSmithers — Fri Mar 02, 2018 12:25 am
Statistics: Posted by john_m — Thu Mar 01, 2018 7:58 pm
john_m wrote:AgentSmithers wrote:I know this sounds silly but I had the same issue when I upgraded my SDK. Have you tried doing an eraseflash with your esptool.py?
Run that command and see if that resolves it after refreshing your firmware, I know it sounds crazy but I did it I think three times before it resolved my issue.
Thanks for your suggestions so far. I tired this as well. Not working. I tried AT firmware also. No luck.
But it is working perfectly with another SDK(superhouse esp-open_rtos).
Kindly confirm the programming addresses (for ESP12E Node MCU module) from the attached
Statistics: Posted by john_m — Thu Mar 01, 2018 5:08 pm
AgentSmithers wrote:I know this sounds silly but I had the same issue when I upgraded my SDK. Have you tried doing an eraseflash with your esptool.py?
Run that command and see if that resolves it after refreshing your firmware, I know it sounds crazy but I did it I think three times before it resolved my issue.
Statistics: Posted by AgentSmithers — Thu Mar 01, 2018 3:40 pm
AgentSmithers wrote:
I know this sounds silly but I had the same issue when I upgraded my SDK. Have you tried doing an eraseflash with your esptool.py?
Run that command and see if that resolves it after refreshing your firmware, I know it sounds crazy but I did it I think three times before it resolved my issue.
Statistics: Posted by john_m — Thu Mar 01, 2018 2:41 pm
Statistics: Posted by AgentSmithers — Thu Mar 01, 2018 8:04 am
john_m wrote:Her Majesty wrote:There are some examples may help on github. https://github.com/espressif/esp8266-rtos-sample-code/tree/master/03Wifi
I tried, Still no luck
Statistics: Posted by john_m — Tue Feb 27, 2018 3:35 pm
Her Majesty wrote:There are some examples may help on github. https://github.com/espressif/esp8266-rtos-sample-code/tree/master/03Wifi
Statistics: Posted by AgentSmithers — Thu Feb 01, 2018 8:26 am
Statistics: Posted by john_m — Thu Jan 25, 2018 5:05 pm
Statistics: Posted by Her Mary — Thu Jan 25, 2018 5:03 pm
Code:
/* need to set opmode before you set config */
wifi_set_opmode(STATIONAP_MODE);
struct station_config *config = (struct station_config *)malloc(sizeof(struct station_config));
bzero(config, sizeof(struct station_config));
sprintf(config->ssid, "john");
sprintf(config->password, "12345678");
/* need to sure that you are in station mode first,
* otherwise it will be failed. */
wifi_station_set_config(config);
free(config);
Statistics: Posted by john_m — Wed Jan 24, 2018 3:18 pm