Search found 9016 matches

by ESP_Sprite
Mon Dec 19, 2022 1:56 am
Forum: General Discussion
Topic: Custom board: endless reset loop
Replies: 3
Views: 1375

Re: Custom board: endless reset loop

Can you post the text that appears on the reset loop here? Also, just in case, can you post your schematic?
by ESP_Sprite
Sat Dec 17, 2022 4:12 am
Forum: Hardware
Topic: What is the reason why ESP-32 can still work after the capacitor of the crystal oscillator is shorted by the ESP-32 hard
Replies: 3
Views: 1331

Re: What is the reason why ESP-32 can still work after the capacitor of the crystal oscillator is shorted by the ESP-32

PLL_CLOCK is the clock that is generated by the PLL, as described above. It's 320 or 480MHz, depending on, well, mostly what CPU clock speed you select (80/160 or 240MHz)
by ESP_Sprite
Sat Dec 17, 2022 4:04 am
Forum: General Discussion
Topic: ESP32-S3 SoC questions: integrated USB, SPI Flash, crystal (& schematic review)
Replies: 6
Views: 2415

Re: ESP32-S3 SoC questions: integrated USB, SPI Flash, crystal (& schematic review)

Yes, that is all correct. Some nuance: as I said before, having USB-serial-JTAG (or whatever you set with the efuses) on the pin is the default; if your application itself needs to use USB-OTG, it can always switch over once it's booted (and that keeps until the chip is reset). Also, do note that US...
by ESP_Sprite
Fri Dec 16, 2022 9:26 am
Forum: ESP32 Arduino
Topic: Better to use task scheduler or RTOS tasks?
Replies: 1
Views: 1378

Re: Better to use task scheduler or RTOS tasks?

Both work indeed, and it depends on your use case and preference wrt what to use. A (non-pre-emptive multitasking) task scheduler needs the task functions to be written in a specific way, where they always exit at some point. RTOS tasks do not need this, but inter-task communications can be harder a...
by ESP_Sprite
Fri Dec 16, 2022 9:24 am
Forum: ESP32 Arduino
Topic: Octal Flash option selected, but EFUSE not configured!
Replies: 1
Views: 2113

Re: Octal Flash option selected, but EFUSE not configured!

Likely you need to run the espefuse.py line at the end of this section.
by ESP_Sprite
Fri Dec 16, 2022 9:20 am
Forum: Hardware
Topic: ESP32-S3FH4R2 Power Up Issue
Replies: 3
Views: 1860

Re: ESP32-S3FH4R2 Power Up Issue

Additionally, take a look if the EN signal is in spec - on powerup it should be low long enough for Vcc to rise to a proper level. The datasheet has the details iirc.
by ESP_Sprite
Fri Dec 16, 2022 2:42 am
Forum: Hardware
Topic: ESP32-S3-Mini-1 custom hardware-no signs of life from the processor
Replies: 6
Views: 2040

Re: ESP32-S3-Mini-1 custom hardware-no signs of life from the processor

Sorry, I have no idea. If no one else answers, you could try mailing sales@espressif.com, they should have more details there I think.
by ESP_Sprite
Fri Dec 16, 2022 2:34 am
Forum: General Discussion
Topic: ESP32-S3 SoC questions: integrated USB, SPI Flash, crystal (& schematic review)
Replies: 6
Views: 2415

Re: ESP32-S3 SoC questions: integrated USB, SPI Flash, crystal (& schematic review)

You cannot use USB-OTG for JTAG, only flashing. The USB-OTG and USB-serial-JTAG are on the same pins: unless you specifically initialize something that enables the USB-OTG (e.g. TinyUSB) or burn eFuses, the USB-serial-JTAG will be on GPIO19/GPIO20, and you can use that to JTAG-debug it.
by ESP_Sprite
Thu Dec 15, 2022 8:42 am
Forum: Hardware
Topic: ESP32-S3-Mini-1 custom hardware-no signs of life from the processor
Replies: 6
Views: 2040

Re: ESP32-S3-Mini-1 custom hardware-no signs of life from the processor

Nice :) I imagine you won't do it in production, but just for reference: the ESP32 does need a proper power-on reset (usually provided by something like an 10K/1U RC network) to properly boot up. Tying the EN to VCC will likely make it work most of the time, but we can't guarantee that functionality.
by ESP_Sprite
Thu Dec 15, 2022 8:39 am
Forum: Hardware
Topic: What is the reason why ESP-32 can still work after the capacitor of the crystal oscillator is shorted by the ESP-32 hard
Replies: 3
Views: 1331

Re: What is the reason why ESP-32 can still work after the capacitor of the crystal oscillator is shorted by the ESP-32

Yeah, don't do that, it runs the ESP out of specs and we can't guarantee anything wrt how it works in that case. For an explanation, I'm just guessing here, but the CPU runs off the internal PLL. While that PLL it uses the Xtal as a reference, it has its own VCO that gets tuned to run in sync with t...