Statistics: Posted by lea.z — Fri Dec 25, 2015 2:55 pm
Statistics: Posted by lobaro — Wed Dec 02, 2015 2:03 am
Statistics: Posted by tve — Wed Nov 18, 2015 1:24 pm
Statistics: Posted by BarryP — Sat Nov 14, 2015 10:31 am
Statistics: Posted by ESP_Faye — Mon Nov 09, 2015 2:19 pm
Statistics: Posted by yaoyonnghuan — Thu Nov 05, 2015 2:28 pm
Statistics: Posted by pcbass — Tue Oct 27, 2015 10:20 pm
Statistics: Posted by ESP_Faye — Fri Oct 23, 2015 4:37 pm
Statistics: Posted by BlackHole — Thu Oct 22, 2015 5:46 pm
Statistics: Posted by Guest — Thu Oct 22, 2015 2:54 pm
Statistics: Posted by ESP_Faye — Thu Oct 22, 2015 2:17 pm
Code:
make clean
make COMPILE=gcc SPI_SIZE_MAP=3 BOOT=new APP=1
make clean
make COMPILE=gcc SPI_SIZE_MAP=3 BOOT=new APP=2
Code:
esptool/esptool.py --baud 576000 write_flash 0x00000 bin/boot_v1.2.bin 0x01000 bin/upgrade/user1.2048.new.3.bin 0x81000 bin/upgrade/user2.2048.new.3.bin 0x1FC000 bin/esp_init_data_default.bin 0x1FE000 bin/blank.bin --flash_size 16m
Code:
mode : softAP(1a:fe:34:9c:61:de)
add if1
dhcp server start:(ip:192.168.4.1,mask:255.255.255.0,gw:192.168.4.1)
bcn 100
INIT: Done
chg_A3:-180
chg_A3:0
add 1
aid 1
station: 0c:84:dc:8d:4c:ad join, AID = 1
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
chg_A3:-180
Statistics: Posted by Guest — Wed Oct 21, 2015 8:45 pm
Statistics: Posted by ESP_Faye — Wed Oct 21, 2015 3:14 pm
Statistics: Posted by Guest — Wed Oct 21, 2015 2:32 pm
Code:
wifi_set_opmode(SOFTAP_MODE);
Code:
user_set_softap_config(void) {
struct softap_config config;
os_memset(config.ssid, 0, 32);
os_memset(config.password, 0, 64);
os_memcpy(config.ssid, "ESP8266", 7);
os_memcpy(config.password, "12345678", 8);
config.ssid_len = 0;
config.channel = 1;
config.authmode = AUTH_WPA2_PSK;
config.ssid_hidden = 0;
config.max_connection = 4;
config.beacon_interval = 100;
wifi_softap_set_config(&config);// Set ESP8266 softap config
}
Code:
chg_A3:-180
chg_A3:0
chg_A3:-180
chg_A3:0
.... and so on
Statistics: Posted by Guest — Tue Oct 20, 2015 9:55 pm