Search found 9596 matches

by ESP_Sprite
Wed Sep 18, 2024 12:19 am
Forum: Hardware
Topic: ESP32-C3-MINI-H4 USB to UART not working
Replies: 2
Views: 728

Re: ESP32-C3-MINI-H4 USB to UART not working

You should short DN+ with DN2+ and DN- with DN2- otherwise your USB-C connection only works one way around; have you tried flipping it to see if it works then?

(Btw, according to the USB specs, an USB-C connector should have its shield connected directly to ground; R4/C2 are not needed.)
by ESP_Sprite
Wed Sep 18, 2024 12:10 am
Forum: ESP-IDF
Topic: Using GPIO15 as GPIO OUTPUT in ESP32-WROOM
Replies: 2
Views: 475

Re: Using GPIO15 as GPIO OUTPUT in ESP32-WROOM

That should just work. Are you sure there's not something else dragging the pin down? Perhaps using an oscilloscope rather than a LA may help identify the issue?
by ESP_Sprite
Wed Sep 18, 2024 12:07 am
Forum: ESP-IDF
Topic: "Access cache when cache is disabled" exception on ESP32-S3-EYE?
Replies: 4
Views: 749

Re: "Access cache when cache is disabled" exception on ESP32-S3-EYE?

No, the ESP32-S3/ESP-IDF don't do page faulting; all memory pages are always available.

If you can post the error log (including the backtrace) and/or your code, we may be able to tell you more.
by ESP_Sprite
Tue Sep 17, 2024 3:13 am
Forum: General Discussion
Topic: Problem with a high resolution counter
Replies: 1
Views: 350

Re: Problem with a high resolution counter

You can't. Interrupt overhead is pretty high on the ESP32 chips; if you're firing too many per second, the rest of the code doesn't get execution time and the watchdogs will reset your chip. Instead, the correct strategy is to try and use the peripherals (LCD interface, SPI, RMT, I2S, ...) to do the...
by ESP_Sprite
Tue Sep 17, 2024 3:01 am
Forum: Hardware
Topic: Wrong baud rate on ESP32-S3 stock SoC
Replies: 1
Views: 400

Re: Wrong baud rate on ESP32-S3 stock SoC

In general: If you value your sanity, do not use a breadboard for anything high-frequency (with 'high frequency' being anything above like a megahertz or something). In this particular case, your breadboard probably has all sorts of parasitic capacitance/inductance issues leading the crystal to osci...
by ESP_Sprite
Tue Sep 17, 2024 12:05 am
Forum: ESP-IDF
Topic: "Access cache when cache is disabled" exception on ESP32-S3-EYE?
Replies: 4
Views: 749

Re: "Access cache when cache is disabled" exception on ESP32-S3-EYE?

Most likely cause is you having an interrupt marked as being entirely in IRAM which then accesses flash or psram.
by ESP_Sprite
Fri Sep 13, 2024 1:22 pm
Forum: ESP8266
Topic: Problems with Power supply via Power Bank and USBA vs. USB C
Replies: 3
Views: 1086

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

That USB-C power plug just is not going to work. You need one which is properly USB-C compliant (=has those 5.1K resistors internally).
by ESP_Sprite
Fri Sep 13, 2024 6:38 am
Forum: ESP-IDF
Topic: Writing IRAM
Replies: 1
Views: 390

Re: Writing IRAM

You can; in Menuconfig disable 'Component config → ESP System Settings → Memory protection'.
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.)