Search found 8999 matches

by ESP_Sprite
Wed Apr 17, 2024 6:49 am
Forum: ESP-IDF
Topic: Stack Overflow Issues with CY8C4245AXI-483 Bootloader Implementation on ESP32
Replies: 1
Views: 109

Re: Stack Overflow Issues with CY8C4245AXI-483 Bootloader Implementation on ESP32

I don't see the debug log, it would be helpful to see where the stack overflow happens and to have a backtrace of that. Also: what stack did you increase? In your sdkconfig, the main stack (which calls into the bootloader stuff) only is allocated 3584 bytes. I'd suggest using menuconfig to increase ...
by ESP_Sprite
Wed Apr 17, 2024 2:41 am
Forum: Report Bugs
Topic: SSL cert invalid
Replies: 2
Views: 155

Re: SSL cert invalid

Think it's just an unused subdomain.
by ESP_Sprite
Wed Apr 17, 2024 2:39 am
Forum: ESP8266
Topic: Is the 8266 processor supported ?
Replies: 17
Views: 33906

Re: Is the 8266 processor supported ?

I seem to remember some RISC-V (C series) does support SPI-RAM or am I mistaken? Both the ESP32P4 and the ESP32C61 can, but these chips aren't (widely) available yet. If so, I guess I will choose the S series for the foreseeable future and I hope Espressif will keep making/supporting them for some ...
by ESP_Sprite
Wed Apr 17, 2024 2:31 am
Forum: ESP-IDF
Topic: This WiFi Code causes Stack overflow
Replies: 1
Views: 115

Re: This WiFi Code causes Stack overflow

...Okay, thanks for sharing, but did you have a question? In general, yes, if you declare variables inside your functions, it'll use up stack space, and if you didn't allocate enough of that to your task, it'll overflow your stack. Making variables global is one way around that, although normally pe...
by ESP_Sprite
Wed Apr 17, 2024 2:26 am
Forum: ESP-IDF
Topic: esp_https_server component with mTLS client auth
Replies: 1
Views: 96

Re: esp_https_server component with mTLS client auth

That's kinda to be expected. A PEM file is a base64 encoding, in this case likely encoding PKCS information. This encodes way more than simply the private key; there's also identifying information like the serial, common name, maybe name and address of issuer etc. Those things are not necessary for ...
by ESP_Sprite
Wed Apr 17, 2024 2:10 am
Forum: Hardware
Topic: ESP32-S3FH4R2 - Unable to flash
Replies: 4
Views: 236

Re: ESP32-S3FH4R2 - Unable to flash

I'm receiving an output voltage of 3.3V. Will it still function properly if I omit the 40MHz crystal? No. The ESP chip will fail to do anything if it can't generate a proper 40MHz sighal. On your schematic:The values of C5 and C6 are way off. 22uF capacitors will kill the oscillation entirely; didn...
by ESP_Sprite
Wed Apr 17, 2024 2:05 am
Forum: Hardware
Topic: ESP32-C3FN4 Schematic review
Replies: 3
Views: 180

Re: ESP32-C3FN4 Schematic review

Thank you very much! That will save me some parts :) However on the Schematic Checklist i can see they added the there also an Inductor, as reason to stabilize the frequenzy from the crystal. So lets add it and we will see! Thanks :) That's fair, worst case you change it to a 0 ohm resistor in the ...
by ESP_Sprite
Wed Apr 17, 2024 2:04 am
Forum: Hardware
Topic: Signal disturbance of ESP32-S3 module with pcb wifi antenna underneath a metal plate
Replies: 1
Views: 111

Re: Signal disturbance of ESP32-S3 module with pcb wifi antenna underneath a metal plate

That will likely negatively affect antenna performance, yes. Sorry, I don't know too much about RF magic to give an indication of how much. Another thing you may want to watch out for that I've had issues with in the past: if you manage to detune your antenna by a lot, you can get issues on WiFi ini...
by ESP_Sprite
Wed Apr 17, 2024 1:50 am
Forum: General Discussion
Topic: PSRAM integrated in the chip’s package
Replies: 1
Views: 129

Re: PSRAM integrated in the chip’s package

Yes, the psram is inside the package. No, you cannot add another psram chip externally and expect the amount of accessible memory available to increase, the chip does not support that.
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: 255

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...