Search found 9039 matches

by ESP_Sprite
Thu Dec 21, 2023 11:17 am
Forum: Hardware
Topic: Drive strength for XTAL-P/N on ESP32-C6 (or in general)
Replies: 3
Views: 1810

Re: Drive strength for XTAL-P/N on ESP32-C6 (or in general)

Note that the -C6 is not only a MCU, which indeed wouldn't need such specifics on the crystal. The thing is that the C6 also has a radio, which is an analog part and which is influenced in an analog way by the quality of things like the clock signal. Not having that inductor there will likely work i...
by ESP_Sprite
Thu Dec 21, 2023 10:34 am
Forum: General Discussion
Topic: How to program custom ESP32 S3 chip hardware
Replies: 11
Views: 103999

Re: How to program custom ESP32 S3 chip hardware

Did MicroControllers link not help? What error exactly are you running into? What have you already tried to solve it?
by ESP_Sprite
Thu Dec 21, 2023 10:26 am
Forum: General Discussion
Topic: ESP32-­S2-­SOLO­ NRND ?
Replies: 7
Views: 3212

Re: ESP32-­S2-­SOLO­ NRND ?

NRND doesn't mean we're not selling them anymore, fwiw, it tends to mean that there are better modules to pick from. (Usually improved RF performance.)
by ESP_Sprite
Wed Dec 20, 2023 12:44 pm
Forum: Hardware
Topic: ESP32-S3 WROOM-1U Brown-out reset problem and Flashing fails
Replies: 5
Views: 30642

Re: ESP32-S3 WROOM-1U Brown-out reset problem and Flashing fails

Hard to say without having your hardware on hand. For some reason the ESP32 resets very early in the boot process, but it's impossible to say what just from that; it generally does not do that by itself so I'd suspect the power supply (still; in this case a disconnect on a 3.3V pin would give result...
by ESP_Sprite
Wed Dec 20, 2023 7:09 am
Forum: ESP32 Arduino
Topic: Can I flash new firmware through ESP32 S3's "USB" connector?
Replies: 7
Views: 19433

Re: Can I flash new firmware through ESP32 S3's "USB" connector?

Yes. Note that you may want to also build in something to force the ESP32-S3 into download mode, otherwise you can get into a situation (when e.g. firmware reconfigures the USB GPIOs) when you can't use USB to force the device into download mode anymore.
by ESP_Sprite
Wed Dec 20, 2023 5:49 am
Forum: ESP-IDF
Topic: FreeRTOS 11
Replies: 3
Views: 11468

Re: FreeRTOS 11

Just from our ESP-IDF SOP, I expect us to be using our own fork for ESP5. If we would migrate away from that, I imagine it would still be available in ESP-IDF 6 and removed in ESP-IDF 7 at the very earliest. However, from what I heard Amazon FreeRTOS 11 is doing some things differently than our curr...
by ESP_Sprite
Wed Dec 20, 2023 5:41 am
Forum: ESP-IDF
Topic: [SOLVED] MCPWM works in app_main but not in a FreeRTOS task
Replies: 3
Views: 5854

Re: MCPWM works in app_main but not in a FreeRTOS task

Not sure what exactly is wrong, but to add some info: app_main is also running as a plain old RTOS task (just one that is started and cleaned up within ESP-IDF rather than explicitly), so there's not really much difference there. If any, I'd look at how you pass xGenerators as an argument; something...
by ESP_Sprite
Mon Dec 18, 2023 1:51 pm
Forum: Hardware
Topic: ESP32 flash verify fails after a while
Replies: 11
Views: 218835

Re: ESP32 flash verify fails after a while

SpaeniDario wrote:
Mon Dec 18, 2023 8:03 am
The output used for the ESP is an LDO@3.15V, max 220mA
That is something to look at: 220mA is really underdimensioned for an ESP32. I think the datasheet specifies a minimum of 500mA.
by ESP_Sprite
Mon Dec 18, 2023 1:49 pm
Forum: Hardware
Topic: Clock spread / precision RC_FAST_CLK and RTC_SLOW_CLK
Replies: 6
Views: 39031

Re: Clock spread / precision RC_FAST_CLK and RTC_SLOW_CLK

The internal oscillators are on-die; they're not separate components.
by ESP_Sprite
Mon Dec 18, 2023 5:12 am
Forum: ESP-IDF
Topic: Cannot disable flash encrytion after enabled it on development mode
Replies: 3
Views: 12121

Re: Cannot disable flash encrytion after enabled it on development mode

Base issue is that you cannot 'un-burn' eFuse bits. You initially set it to 0001 (1), and you want to set it to 0010 (2), which requires 'un-burning' the 1st fuse. You probably want to set it to 0011 (3) instead.