I have problems connecting to a WiFi.
I am using the code from the http example:
https://github.com/espressif/esp-idf/bl ... est_main.c
Of course I have replaced SSID and password with my own WiFi settings.
For me it looks like the esp has problems authenticating with my WiFi.
I have tried connecting to an unsecured WiFi but this didn't work either.
Here is the serial console output:
Code: Select all
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
ets Jun 8 2016 00:22:57
rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0x00
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3ffc0008,len:4
load:0x3ffc000c,len:2364
load:0x40078000,len:3724
ho 0 tail 12 room 4
load:0x40080000,len:260
entry 0x40080034
I (626) heap_alloc_caps: Initializing. RAM available for dynamic allocation:
I (627) heap_alloc_caps: At 3FFBD674 len 0002298C (138 KiB): DRAM
I (631) heap_alloc_caps: At 3FFE8000 len 00018000 (96 KiB): D/IRAM
I (641) heap_alloc_caps: At 4009C094 len 00003F6C (15 KiB): IRAM
I (651) cpu_start: Pro cpu up.
I (657) cpu_start: Single core mode
I (663) cpu_start: Pro cpu start user code
I (852) phy: phy_version: 258, Nov 29 2016, 15:51:07, 0, 0
I (1294) cpu_start: Starting scheduler on PRO CPU.
tcpip_task_hdlxxx : 3ffc1118, prio:18,stack:2048
I (1303) wifi: frc2_timer_task_hdl:3ffc2c0c, prio:22, stack:2048
I (1311) wifi: pp_task_hdl : 3ffc5870, prio:23, stack:8192
I (1312) example: Setting WiFi configuration SSID Blackpearl...
I (1319) wifi: mode : sta (18:fe:34:6a:91:76)
I (1444) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (1444) wifi: state: init -> auth (b0)
I (2444) wifi: state: auth -> init (2)
I (2565) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (2565) wifi: state: init -> auth (b0)
I (3565) wifi: state: auth -> init (2)
I (3686) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (3686) wifi: state: init -> auth (b0)
I (4686) wifi: state: auth -> init (2)
I (4807) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (4807) wifi: state: init -> auth (b0)
I (5807) wifi: state: auth -> init (2)
I (5928) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (5928) wifi: state: init -> auth (b0)
I (6928) wifi: state: auth -> init (2)
I (7049) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (7049) wifi: state: init -> auth (b0)
I (8049) wifi: state: auth -> init (2)
I (8170) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (8170) wifi: state: init -> auth (b0)
I (9170) wifi: state: auth -> init (2)
I (9291) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (9291) wifi: state: init -> auth (b0)
I (10291) wifi: state: auth -> init (2)
I (10412) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (10412) wifi: state: init -> auth (b0)
I (11412) wifi: state: auth -> init (2)
I (11533) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (11533) wifi: state: init -> auth (b0)
I (12533) wifi: state: auth -> init (2)
I (12654) wifi: n:1 0, o:1 0, ap:255 255, sta:1 0, prof:1
I (12654) wifi: state: init -> auth (b0)
...
Thank you!
Best,
Malte