Search found 9597 matches

by ESP_Sprite
Fri Sep 13, 2024 2:05 am
Forum: ESP-IDF
Topic: Running YOLOv5 Nano on ESP32-S3-EYE?
Replies: 4
Views: 905

Re: Running YOLOv5 Nano on ESP32-S3-EYE?

You could remove your sdkconfig and drop this file in your project directory, then run menuconfig again. (Note you may need to select one of the default partition schemes there as that file uses a custom one.)
by ESP_Sprite
Fri Sep 13, 2024 12:19 am
Forum: ESP-IDF
Topic: Running YOLOv5 Nano on ESP32-S3-EYE?
Replies: 4
Views: 905

Re: Running YOLOv5 Nano on ESP32-S3-EYE?

Have you enabled PSRAM in menuconfig? If not, you can only use the internal RAM, and that's probably too little.
by ESP_Sprite
Fri Sep 13, 2024 12:17 am
Forum: Hardware
Topic: ESP32-C3 Custom PCB Design Issue - Device Not Working
Replies: 3
Views: 829

Re: ESP32-C3 Custom PCB Design Issue - Device Not Working

ESP_Sprite wrote:
Thu Sep 12, 2024 1:50 pm
In what way specifically is it not working?
by ESP_Sprite
Thu Sep 12, 2024 1:51 pm
Forum: Hardware
Topic: Unable to compress strings
Replies: 5
Views: 1143

Re: Unable to compress strings

We're not talking about flash here, we're talking about RAM. And I'm sorry, but I can't tell you exactly what is going wrong - 300K seems enough RAM to me, but perhaps your RAM is fragmented and miniz tries to allocate a large contiguous buffer.
by ESP_Sprite
Thu Sep 12, 2024 1:50 pm
Forum: Hardware
Topic: ESP32-C3 Custom PCB Design Issue - Device Not Working
Replies: 3
Views: 829

Re: ESP32-C3 Custom PCB Design Issue - Device Not Working

fawazapp wrote:
Thu Sep 12, 2024 7:26 am
However, the device is still not working, and I’m unable to pinpoint the problem.
That is about the most useless diagnostics you can post here. In what way specifically is it not working? What did you already measure / try?
by ESP_Sprite
Thu Sep 12, 2024 1:44 am
Forum: ESP8266
Topic: Problems with Power supply via Power Bank and USBA vs. USB C
Replies: 3
Views: 1088

Re: Problems with Power supply via Power Bank and USBA vs. USB C

USB-C needs two 5.1 resistors on the CC pins for it to supply power. It's likely your USB-C adapter thingy does not have those. That means an USB-C to USB-A cable will work (as USB-A does not require those resistors) but USB-C to USB-C will not.
by ESP_Sprite
Thu Sep 12, 2024 1:39 am
Forum: ESP-IDF
Topic: Flashing new Code to an ESP32s3 While it is Acting as a MSC
Replies: 4
Views: 1014

Re: Flashing new Code to an ESP32s3 While it is Acting as a MSC

Its possible in theory: you'd have to make a composite device with a MSC plus a CDC-ACM serial port, then hook up the DTR/RTS signals of the serial port to call something that resets the chip into bootloader mode. Not sure if anyone implemented that already, though.
by ESP_Sprite
Thu Sep 12, 2024 1:37 am
Forum: ESP-IDF
Topic: Generating a macro to wrap a function so it can be called by interrupt priority level > 3
Replies: 2
Views: 460

Re: Generating a macro to wrap a function so it can be called by interrupt priority level > 3

Trivial alternative solution: can you allocate more RMT blocks to your Tx channel?
by ESP_Sprite
Thu Sep 12, 2024 1:33 am
Forum: Hardware
Topic: SL component burned
Replies: 3
Views: 655

Re: SL component burned

How's about you post a (clear, in focus) picture of the devboard with the broken component clearly marked? That probably makes it a lot easier to tell you what broke than going by 'SL' as the only hint.
by ESP_Sprite
Thu Sep 12, 2024 1:31 am
Forum: Hardware
Topic: Unable to compress strings
Replies: 5
Views: 1143

Re: Unable to compress strings

miniz needs a bunch of space to allocate data structures that are needed for compression, e.g. for the dictionary. Could be that you don't have enough (contiguous) memory for that, making the call fail.