Search found 9284 matches

by ESP_Sprite
Mon Jul 01, 2024 5:27 am
Forum: Hardware
Topic: ESP32 overheating, erroring out
Replies: 1
Views: 21

Re: ESP32 overheating, erroring out

What other hardware did you connect to the ESP32? I suspect whatever you connected is out-of-spec for the ESP32 GPIO pins, blowing it up at a certain point.
by ESP_Sprite
Mon Jul 01, 2024 5:22 am
Forum: Hardware
Topic: Problems with flashing esp32-s2 on custom-made board
Replies: 1
Views: 26

Re: Problems with flashing esp32-s2 on custom-made board

Please look at and follow the hardware design guidelines for that chip. At the very least, VDD3P3 is not connected to 3.3V and you're missing a RC circuit on your reset pin.
by ESP_Sprite
Mon Jul 01, 2024 5:18 am
Forum: Hardware
Topic: ESP32 S3R8 download mode via USB
Replies: 3
Views: 169

Re: ESP32 S3R8 download mode via USB

You have to flash something to it first. A new chip does not enable USB out of the box. I ran into this very same issue on my new boards. That is not true; USB is in the bootloader and when you go into download mode, the chip will respond over USB regardless of what's in the flash. The thing is tha...
by ESP_Sprite
Mon Jul 01, 2024 5:16 am
Forum: General Discussion
Topic: SPI + MCP23S17 + ESP32-S3 Slow for reading BUS. Am I missing something?
Replies: 3
Views: 215

Re: SPI + MCP23S17 + ESP32-S3 Slow for reading BUS. Am I missing something?

Ah, gotcha. Hm, not sure if I have any advice then: standard GPIO isn't too fast on the ESP32 series, 'fast' GPIO doesn't have enough pins, and I don't think the camera interface (which can be abused to read in parallel data) has enough I/O for that. Maybe if you cut a few bits from your address bus...
by ESP_Sprite
Mon Jul 01, 2024 5:13 am
Forum: General Discussion
Topic: Wifi 6 AP
Replies: 1
Views: 17

Re: Wifi 6 AP

Riccardo__ wrote:
Fri Jun 28, 2024 2:03 pm
I found ESP32 C6 but it cannot be used as an AP.
What made you think that?
by ESP_Sprite
Fri Jun 28, 2024 1:36 am
Forum: General Discussion
Topic: ESP32-WROOM-32D does not always reset on power-up
Replies: 9
Views: 9912

Re: ESP32-WROOM-32D does not always reset on power-up

I had this issue with just 1 esp32 wroom dev board. It was the only board I have seen with that issue after using dozens of esp32 wroom boards. The fix was fairly simple and seems to be reliable. The unit has been powered down/up dozens of times in the last few days. Just bridge the vin (5V) to GPI...
by ESP_Sprite
Fri Jun 28, 2024 1:32 am
Forum: ESP-IDF
Topic: Store Wifi credentials (SSID and password) on nvs during manufacturing
Replies: 2
Views: 281

Re: Store Wifi credentials (SSID and password) on nvs during manufacturing

I believe the way SecureBoot works is that you first flash everything to your ESP unencrypted, then on first boot the bootloader will encrypt everything that needs encrypting; as such, you can probably flash your (unencrypted) NVS stuff in the same command line as you flash your (unencrypted) main p...
by ESP_Sprite
Fri Jun 28, 2024 1:28 am
Forum: ESP-IDF
Topic: Esp32S3 : VFS Component. How to determine Freemem and Used mem on a FileSystem ?
Replies: 1
Views: 103

Re: Esp32S3 : VFS Component. How to determine Freemem and Used mem on a FileSystem ?

For reference, on other Posix OSses, you'd do it by running stat() on the directory where the filesystem is mounted. Potentially newlib has the same convention.
by ESP_Sprite
Thu Jun 27, 2024 9:23 am
Forum: Hardware
Topic: ESP32 S3R8 download mode via USB
Replies: 3
Views: 169

Re: ESP32 S3R8 download mode via USB

You probably want to remove C42.
by ESP_Sprite
Thu Jun 27, 2024 9:21 am
Forum: ESP-IDF
Topic: Software reset due to exception/pani
Replies: 1
Views: 1332

Re: Software reset due to exception/pani

Generally, ESP-IDF panics whenever it finds a situation that Should Never Happen. There's a fair few things that generate this; just knowing that there was a panic is unlikely to get you to the root cause.