Search found 9001 matches

by ESP_Sprite
Thu Apr 18, 2024 12:21 am
Forum: ESP-IDF
Topic: How to include subcomponents inside ESP-IDF
Replies: 1
Views: 6

Re: How to include subcomponents inside ESP-IDF

You don't need to reference the component files in your main CMakeLists.txt, the component itself needs a CMakeLists.txt that makes esp-idf compile them. Also, your 'component' directory should be in the root of your project, not in the 'main' folder.
by ESP_Sprite
Thu Apr 18, 2024 12:18 am
Forum: ESP-IDF
Topic: ESP-IDF can't find ESP32-S3-DevKitC-1 to flash
Replies: 1
Views: 8

Re: ESP-IDF can't find ESP32-S3-DevKitC-1 to flash

Proper syntax would be 'idf.py -p /dev/ttyACM0 flash', can you try that?
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: 2
Views: 111

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

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: 2
Views: 117

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: 2
Views: 98

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