Search found 4 matches

by fbautista
Mon Jan 06, 2020 9:20 pm
Forum: ESP-IDF
Topic: Clients can't connect to ESP32 SoftAP. Not getting IP address
Replies: 3
Views: 5260

Clients can't connect to ESP32 SoftAP. Not getting IP address

Hi, I've been using the ESP32 WIFI in SoftAP mode. After some tests I am observing certain clients randomly disconnects and won't be able to connect anymore. Below is a debug when this event occurs: I (1683272) wifi: station: 00:12:9f:00:97:77 leave, AID = 2, bss_flags is 131121, bss:0x3ffcaf9c I (1...
by fbautista
Wed Dec 04, 2019 9:14 pm
Forum: ESP-IDF
Topic: Need help building openocd for windows 10 (msys32)
Replies: 0
Views: 1744

Need help building openocd for windows 10 (msys32)

Hi, I'm pretty new to esp32 development. I am running esp tools through msys32 on Windows. I've successfully integrated to Eclipse but currently running into a problem building openocd. I am following this guide: https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/jtag-debugging/buildin...
by fbautista
Wed Dec 04, 2019 8:06 pm
Forum: ESP-IDF
Topic: Change ESP32 softAP default IP address
Replies: 4
Views: 14740

Re: Change ESP32 softAP default IP address

In general, ESP32 Arduino builds on esp-idf, so everything you can do in Arduino, you can somehow do in esp-idf. In this case, I think you can set the IP with tcpip_adapter_set_ip_info . You probably want to do this before bringing up the SoftAP. Thank you sir. I got it working using esp_netif_set_...
by fbautista
Tue Dec 03, 2019 11:38 pm
Forum: ESP-IDF
Topic: Change ESP32 softAP default IP address
Replies: 4
Views: 14740

Change ESP32 softAP default IP address

Hi, I am new to esp32 development. Just wondering if there is a function i can use to change the default gateway ip (192.168.4.1) of the ESP32 softAP mode to something else? I only see a way to do this from the Arduino Wifi.h library, i.e. Wifi.softAPConfig(). Is there a native esp-idf function that...