Troublshooting ESP32-S3 WiFi AP
Posted: Tue Dec 05, 2023 7:45 pm
Having trouble getting a WiFi Access Point to work on a custom S3 board. Identical code on an ESP32-S3-DevKitC-1U works fine. Looking for any suggestions on ways to troubleshoot either hardware or software.
Development is PlatformIO running on top of Visual Studio Code for editing/building, then flashing using the "ESP32S3 FLASH DOWNLOAD TOOL V3.9.5" utility. For the dev kit I'm using the same source code as above but build/flash using the Arduino 1.8.19 IDE.
Code appears to run fine based on serial prints, but the AP never shows up for either my Windows or Ubuntu laptops. Same code on the dev kit shows up just fine.
Code: main.cpp Select all
#include <Arduino.h>
#include <WiFi.h>
const char *ssid = "ESP32";
const char *password = "PASSWORD";
void setup() {
Serial.begin(115200);
Serial.println("Configure access piont");
WiFi.softAP(ssid, password);
IPAddress myIP = WiFi.softAPIP();
Serial.print("AP-IP Address");
Serial.println(myIP);
}
void loop() {
}
Code appears to run fine based on serial prints, but the AP never shows up for either my Windows or Ubuntu laptops. Same code on the dev kit shows up just fine.
Code: serial.txt Select all
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0x1 (POWERON),boot:0x8 (SPI_FAST_FLASH_BOOT)
SPIWP:0xee
mode:DIO, clock div:2
load:0x3fce3808,len:0x3ac
load:0x403c9700,len:0x9b4
load:0x403cc700,len:0x2908
SHA-256 comparison failed:
Calculated: c0cf91409b6e8a9ebb3be9aa4bc24145a18278e6c7411fcfc5fd4816f574b49b
Expected: ccbdf521f90ffa902a0f72b4d1bdaa90e077361003a1c152131c93a62b8a7c0e
Attempting to boot anyway...
entry 0x403c98bc
E (233) esp_core_dump_flash: No core dump partition found!
E (233) esp_core_dump_flash: No core dump partition found!
Configure access piont
[ 273][D][WiFiGeneric.cpp:1035] _eventCallback(): Arduino Event: 0 - WIFI_READ
Y
[ 316][D][WiFiGeneric.cpp:1035] _eventCallback(): Arduino Event: 10 - AP_START
[ 321][D][WiFiGeneric.cpp:1035] _eventCallback(): Arduino Event: 11 - AP_STOP
AP-IP Address192.168.4.1
[ 1064][D][WiFiGeneric.cpp:1035] _eventCallback(): Arduino Event: 10 - AP_START