Search found 9005 matches

by ESP_Sprite
Tue Apr 16, 2024 2:11 am
Forum: Hardware
Topic: ESP32-S3FH4R2 - Unable to flash
Replies: 4
Views: 241

Re: ESP32-S3FH4R2 - Unable to flash

Your image is unreadable potato quality; suggest you share it as a PDF rather than an image. Aside from that, please check the basics: are your voltage rails okay? Do you see 40MHz on the main crystal? Do you get any output on the serial port on power-on or reset?
by ESP_Sprite
Tue Apr 16, 2024 2:06 am
Forum: Hardware
Topic: Conection ESP32 devkitv1 to PC
Replies: 2
Views: 212

Re: Conection ESP32 devkitv1 to PC

#incluir "BluetoothSerial.h" #si !definido(CONFIG_BT_ENABLED) || !definido(CONFIG_BLUEDROID_ENABLED) #error ¡Bluetooth no está habilitado! Ejecute make menuconfig y habilítelo. #terminara si ...the only reason I can explain this is that English is your native language, but you chucked this in an au...
by ESP_Sprite
Tue Apr 16, 2024 2:03 am
Forum: Hardware
Topic: ESP32-C3FN4 Schematic review
Replies: 3
Views: 183

Re: ESP32-C3FN4 Schematic review

USB-C specs say you should connect the receptacle to ground ( here , page 135) so you can get rid of C1/R3. I'd personally add an 10uF on VCC as well, but that's more intuition than grounded in theory. Wrt adding resistors/inductors, please follow the hardware reference guide , for instance the C3 d...
by ESP_Sprite
Tue Apr 16, 2024 1:51 am
Forum: General Discussion
Topic: ESP32 Failed to allocate RSA interrupt 261
Replies: 1
Views: 131

Re: ESP32 Failed to allocate RSA interrupt 261

You're probably running out of interrupts, and the encryption mqtt wants to do indirectly initializes the hardware RSA peripheral, which needs an interrupt to work. You can free up interrupts by marking them as shared (use the correct flag when initializing peripherals for that) or you can disable h...
by ESP_Sprite
Tue Apr 16, 2024 1:48 am
Forum: General Discussion
Topic: Wake up for a specific time after deep sleep
Replies: 6
Views: 270

Re: Wake up for a specific time after deep sleep

'delay' doesn't do anything wrt sleep modes. You probably want to read up on deep sleep a bit and retry writing your code.
by ESP_Sprite
Tue Apr 16, 2024 1:39 am
Forum: General Discussion
Topic: Flash write/read issue
Replies: 6
Views: 504

Re: Flash write/read issue

That cannot be it; nvs initialization is not asynchroneous so nvs is available when the initialization routine finishes. My bet is still that your program runs for a small while (less than 900ms, seemingly) between the flashing being done and your serial monitor starting. Flashing resets the chip af...
by ESP_Sprite
Mon Apr 15, 2024 2:55 am
Forum: ESP32 Arduino
Topic: What is the proper way to modify 'CONFIG_FREERTOS_HZ' in 'Arduino ESP32', similar to using 'menuconfig' in 'ESP-IDF'?
Replies: 3
Views: 288

Re: What is the proper way to modify 'CONFIG_FREERTOS_HZ' in 'Arduino ESP32', similar to using 'menuconfig' in 'ESP-IDF'

Check esp_timer, it should be easily able to give you 400Hz. You can also use one of the hardware timers;I think Arduino has support for those built-in.
by ESP_Sprite
Sun Apr 14, 2024 1:21 am
Forum: ESP-IDF
Topic: Nanosecond delay
Replies: 6
Views: 523

Re: Nanosecond delay

Can I ask what you're trying to achieve here? On the ESP32 series, you're usually better off using one of the peripherals rather than trying to bitbang something. For instance, you may want to look at the RMT peripheral if you need to generate 'weird' signals.
by ESP_Sprite
Sun Apr 14, 2024 1:17 am
Forum: ESP32 Arduino
Topic: What is the proper way to modify 'CONFIG_FREERTOS_HZ' in 'Arduino ESP32', similar to using 'menuconfig' in 'ESP-IDF'?
Replies: 3
Views: 288

Re: What is the proper way to modify 'CONFIG_FREERTOS_HZ' in 'Arduino ESP32', similar to using 'menuconfig' in 'ESP-IDF'

I don't think you can, not without recompiling the ESP-IDF libraries Arduino uses. Is there any reason you need to? If you need high-resolution timer callbacks, it's usually better to use things like ESP-IDFs esp_timer rather than increasing the tick rate.
by ESP_Sprite
Sun Apr 14, 2024 1:16 am
Forum: ESP-IDF
Topic: Generate signal with timer
Replies: 8
Views: 600

Re: Generate signal with timer

Not sure where you get that a timer group contains 4 timers. From the TRM: 'The ESP32 contains two timer modules, each containing two timers. '. In general, the gptimer driver abstracts away over this: if you ask it for a timer, it'll give you the first one that is free.