Search found 8990 matches

by ESP_Sprite
Tue Apr 16, 2024 7:06 am
Forum: General Discussion
Topic: Wake up for a specific time after deep sleep
Replies: 6
Views: 214

Re: Wake up for a specific time after deep sleep

And yes, there is. You need to find some way to call deepSleepFunction 20 seconds after power up. You can either do that manually, by making sure the code path before the call to that function lasts 20 seconds (inserting delays strategically would indeed help there) or you could schedule a timer cal...
by ESP_Sprite
Tue Apr 16, 2024 7:03 am
Forum: ESP-ADF
Topic: ESP32-LyraTD-SYNA working example code not found
Replies: 2
Views: 1940

Re: Warpage specification and SOP for ESP32-S3-WROOM-1-N8R2

manoj.balakrishnan wrote:
Tue Apr 16, 2024 6:46 am
Hi Experts ,
You are posting on a wrong subforum, as a reply under an unrelated post, on a question that the community here is unlikely to be able to help you with. Suggest you send an email to sales@espressif.com instead
by ESP_Sprite
Tue Apr 16, 2024 7:00 am
Forum: General Discussion
Topic: Wake up for a specific time after deep sleep
Replies: 6
Views: 214

Re: Wake up for a specific time after deep sleep

Ah, never mind, I initially read over your deepSleepFunction code. What do you mean with 'it doesn't even execute the code and stays in a stagnant "on" state.'?
by ESP_Sprite
Tue Apr 16, 2024 2:40 am
Forum: ESP8266
Topic: Is the 8266 processor supported ?
Replies: 14
Views: 33290

Re: Is the 8266 processor supported ?

Yes I found these (and some others). Interesting option, but not very much I/O pins (may or may not suffice for a particular task, although I also use I2C and SPI I/O extenders quite often). Also I don't think any of them have SPI RAM, do they? I'd like to have SPI RAM for receiving and buffering i...
by ESP_Sprite
Tue Apr 16, 2024 2:19 am
Forum: ESP32 Arduino
Topic: ESP32-C3 supermini serial port problem
Replies: 2
Views: 168

Re: ESP32-C3 supermini serial port problem

That is very odd. Just to check it's not a hardware issue: can you reproduce it on other supermini boards as well?
by ESP_Sprite
Tue Apr 16, 2024 2:11 am
Forum: Hardware
Topic: ESP32-S3FH4R2 - Unable to flash
Replies: 1
Views: 124

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: 166

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: 1
Views: 94

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: 104

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: 214

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.