ESP8266 Developer Zone The Official ESP8266 Forum 2016-05-28T02:56:26+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=2001 2016-05-28T02:56:26+08:00 2016-05-28T02:56:26+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2001&p=7114#p7114 <![CDATA[Re: FreeRTOS problem with softAP.]]> Statistics: Posted by sathishkumar — Sat May 28, 2016 2:56 am


]]>
2016-04-12T02:30:29+08:00 2016-04-12T02:30:29+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2001&p=6418#p6418 <![CDATA[Re: FreeRTOS problem with softAP.]]>
So, I put an esp-01 and it works fine.

I tried again the 12E and still it doesn't work.

I tried another 12E and it does not work again.

The two esp-12E, seem to be dead now! If I try to download any program, they do the same. Stop after boot.

The weird thing is that they were working before that.

I suspect it is the Makefile, because the esp-12E has a different flash from the 01.

Any advice? Are they dead?

Statistics: Posted by kostbill — Tue Apr 12, 2016 2:30 am


]]>
2016-04-09T05:03:24+08:00 2016-04-09T05:03:24+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2001&p=6389#p6389 <![CDATA[FreeRTOS problem with softAP.]]>
I am using the latest FreeRTOS and I cannot make the esp8266 work as softAP.

This is the code I am using inside the user_init:

Code:

   
//start soft AP mode.
struct softap_config softapconfig;

wifi_set_opmode(SOFTAP_MODE);
wifi_softap_get_config(&softapconfig);
memset(softapconfig.ssid, 0, 32);
memset(softapconfig.password, 0, 64);

sprintf(softapconfig.ssid, "ESP8266");
sprintf(softapconfig.password, "12345678");
softapconfig.authmode = AUTH_WPA_WPA2_PSK;
softapconfig.ssid_len = 0;
softapconfig.channel = 1;
softapconfig.max_connection = 4;
softapconfig.ssid_hidden = 0;
softapconfig.beacon_interval = 400;

wifi_softap_set_config(&softapconfig);


I have tried all the different variations of the authmode, different values for channel and beacon interval.
In my smartphone, I cannot see the ESP8266.

In the terminal, I see this:


chksum 0x9d
load 0x3ffe8000, len 2508, room 0
tail 12
chksum 0xba
ho 0 tail 12 room 4
load 0x3ffe89d0, len 1200, room 12
tail 4
chksum 0xd1


And then nothing.

Any help?

Thanks.

Statistics: Posted by kostbill — Sat Apr 09, 2016 5:03 am


]]>