ESP32-S3 FH4R2 v0.2 No WiFi
Port, board and/or hardware
Custom Made ESP32-S3 Circuit Board (lol)
MicroPython version
v1.23.0_4M_FLASH
Reproduction
from network import WLAN
sta = WLAN(0)
sta.active(1)
sta.connect('xxx','xxx')
sta.ifconfig()
Expected behaviour
No response
Observed behaviour
('0.0.0.0', xxxx)
Additional Information
Hey, I was wondering if you guys could point me at anything to try to get the WiFi connecting. I tried the ESP32-S3 generic and octal spiram builds which both had bootup warnings and wifi init failures before finding the correct 4MB flash version. This cleared the boot errors and WiFi init errors but connect does nothing. To be clear, this is a custom circuit board with a custom WiFi antenna circuit, its entirely possible I did not connect it properly. However, sta.scan() does return all of my available networks. I believe my signal is in the -75 ballpark. I have tried to enable logging in boot.py but no additional serial was printed when trying to connect. I also attempted to see if it was working with Arduino but have not been able to get it to boot. I just get the final line: entry 0x_______ and nothing after until it eventually reboots.
Code of Conduct
Yes, I agree
ESP32-S3-WROOM-N8R2 WiFi Wont Connect
Port, board and/or hardware
ESP32-S3-WROOM-N8R2
MicroPython version
MicroPython v1.24.1 on 2024-11-29; Generic ESP32S3 module with ESP32S3
Reproduction
from network import WLAN
sta = WLAN(0)
sta.active(1)
sta.connect('net', 'pass')
sta.ifconfig()
Expected behaviour
('192.168.1.100', '192.168.1.1', '0.0.0.0', '0.0.0.0')
Observed behaviour
I (47019) wifi:new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1
I (47019) wifi:state: init -> auth (b0)
I (51319) wifi:state: auth -> init (200)
I (51319) wifi:new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1
I (51319) wifi: STA_DISCONNECTED, reason:2:
I (53729) wifi: STA_DISCONNECTED, reason:205:
Additional Information
This a dual USB C board, I saw closed issues with this, txpower=17 did not work, tried both usb ports, no change. Tried WPA and no security on AP, no change. Other ESP32 and ESP32-S3 boards connect to AP fine. Almost decided to use ESP32 for project but some dumb ass decided to make the HSPI miso pin 12, which is a strapping pin.
Also tried all other 1.24.1 ports in the generic esp32-s3: 4mb flash and Support for Octal-SPIRAM. No errors were seen on any of the ports. This does usually fix WiFi issues. Am able to preform scan() properly. Probably similar to my issue #15602
Code of Conduct
Yes, I agree