Search found 9598 matches

by ESP_Sprite
Wed Oct 02, 2024 7:23 am
Forum: Report Bugs
Topic: ESP32 changes placed in RTC memory variables after returning from deep sleep
Replies: 1
Views: 118

Re: ESP32 changes placed in RTC memory variables after returning from deep sleep

1073507920 in hex is 3FFC6E50, which looks like a pointer. Are you sure you're not overflowing something else somewhere?
by ESP_Sprite
Tue Oct 01, 2024 4:42 pm
Forum: Documentation
Topic: ESP32-WROOM-32D documentation, antenna, BOM, etc.
Replies: 1
Views: 216

Re: ESP32-WROOM-32D documentation, antenna, BOM, etc.

You might be better off also asking sales@espressif.com .
by ESP_Sprite
Tue Oct 01, 2024 3:07 pm
Forum: ESP IoT Solution
Topic: WIFI driver initialization failed due to lack of RAM
Replies: 2
Views: 210

Re: WIFI driver initialization failed due to lack of RAM

WiFi always needs some buffers (e.g. dma descriptors) to be in internal memory. Maybe you somehow managed to fill up your internal memory by so much that it cannot allocate that?
by ESP_Sprite
Tue Oct 01, 2024 3:00 pm
Forum: ESP-IDF
Topic: Supply current fluctuation
Replies: 1
Views: 135

Re: Supply current fluctuation

Nope, it's the nature of the beast: transmitting data or beacons or whatever takes current, and the ESP32 needs to do that at certain times. You can add capacitors or filtering if it affects the rest of your circuit, but the fluctuating current use itself is inevitable.
by ESP_Sprite
Tue Oct 01, 2024 2:57 pm
Forum: ESP-IDF
Topic: Esp32S3 : Library for HighPass numeric filtering ?
Replies: 3
Views: 285

Re: Esp32S3 : Library for HighPass numeric filtering ?

ESP-DSP has features for this. Easiest to use may be this (although the FIR variants are hardware accelerated, if you need that)
by ESP_Sprite
Tue Oct 01, 2024 2:52 pm
Forum: Hardware
Topic: ESP32S3 inbuilt jtag pin protection
Replies: 1
Views: 126

Re: ESP32S3 inbuilt jtag pin protection

Hm, these things aren't really specced (but USB specs give an impedance of 28 ohm min, meaning worst case you'd have 100mA flowing into the pin, which feels like it should not be a problem) but why not simply allow your device to be fed from the 5V USB power supply as well?
by ESP_Sprite
Tue Oct 01, 2024 2:45 pm
Forum: Hardware
Topic: ESP32-S3 USB problem.
Replies: 4
Views: 464

Re: ESP32-S3 USB problem.

Could be an ESD issue. The ESP32 has internal snapback devices, but seeing you don't have extra protection and you have touchable surfaces on your build (screw terminals for USB) you may have zapped your ESP32 with static electricity. (Although I'd check the obvious issues first: perhaps something g...
by ESP_Sprite
Mon Sep 30, 2024 7:14 am
Forum: ESP32 Arduino
Topic: Strange ESP32 C3 SuperMini
Replies: 2
Views: 285

Re: Strange ESP32 C3 SuperMini

Might be a bad module; it's known that some manufacturer of boards marked as C3-supermini messed up their routing leading to crap WiFi performance.
by ESP_Sprite
Wed Sep 25, 2024 8:05 am
Forum: Hardware
Topic: Need help with schematic design for Metronome
Replies: 2
Views: 612

Re: Need help with schematic design for Metronome

Can you be a bit more specific what you need help with? It's usually easier to do so if you ask specific questions, rather than just stating 'I need help!'
by ESP_Sprite
Wed Sep 25, 2024 8:04 am
Forum: Hardware
Topic: Programming ESP32-S3 in custom board
Replies: 1
Views: 788

Re: Programming ESP32-S3 in custom board

Is it correct that using the "native" USB connection (so the "UART" flash method seems misleading to me) I don't need to control GPIO0 and RST at all? I can also remove the push-buttons on my board to manually force them? Mostly, yes. The internal USB-serial-JTAG converter can usually get your ESP3...