Can't compile after changing esp32 board

Hi @sivar2311

Look like it most of the error is stemming out WiFi Libary, but note that I changed everything yday as I had been trying very hard to get around the problem and ended up pulling WiFiManager code and removing Alanswx’s git reference from here. In the mean time I forgot to remove the tzapu’s WifiManager

-Jag

I have tried the minimal example of the alanswx/ESPAsyncWiFiManager on my ESP32-C3. I do not get an AP displayed either.

But a WiFi.softAP() works perfectly.
The problem seems to come from the library.

Hi @sivar2311
Thanks for confirming. Eventually I figured there might be one or other issue as I laid out below

  1. Alanswx’s ESPAsyncWiFimanager didn’t work for me from the library but when I include the file directly into project and not include his library I am, with the help of GitHub - mathieucarbou/ESPAsyncWebServer: Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040.
  2. Its possible that two of my ESP32c3 supermini has issues, but have to confirm by testing it out.
    here is my platformIO as it sits
[env:esp32-c3-devkitm-1]
platform = espressif32
; board = esp32-c3-devkitc-02
board = esp32-c3-devkitm-1
framework = arduino
lib_deps = 
	LittleFS
 	; https://github.com/tzapu/WiFiManager
 	; https://github.com/me-no-dev/ESPAsyncWebServer
	https://github.com/mathieucarbou/ESPAsyncWebServer
	powerbroker2/SafeString @ ^4.1.31
	bblanchon/ArduinoJson @ ^7.0.3
	ayushsharma82/ElegantOTA
	dlloydev/ESP32 ESP32S2 AnalogWrite@^5.0.2

	; madhephaestus/ESP32Servo @ ^3.0.5
build_flags = 
	-D ARDUINO_USB_CDC_ON_BOOT=1
	-D ARDUINO_USB_MODE=1
	-fpermissive
	-DELEGANTOTA_USE_ASYNC_WEBSERVER=1
	-DESPWifiManualSetup=false
	-DBOARD_HAS_PSRAM
board_build.filesystem = littlefs
board_build.f_cpu = 80000000L
; board_build.mcu = esp32c3
board_build.flash_mode = dio
board_build.partitions = tinyuf2-partitions-4MB.csv
monitor_speed = 115200```