Search found 8912 matches

by ESP_Sprite
Mon Mar 25, 2024 12:38 am
Forum: General Discussion
Topic: USB-C to USB-C not working, USB-C to USB-A working, have pulldowns
Replies: 3
Views: 498

Re: USB-C to USB-C not working, USB-C to USB-A working, have pulldowns

Don't worry too much about it. You're only working with USB1.1, which will still work OK if you route it over two parallel pieces of wet string; your layout will work perfectly fine.
by ESP_Sprite
Sun Mar 24, 2024 2:26 am
Forum: Hardware
Topic: ESP32-S3-PICO-1 Issues
Replies: 5
Views: 323

Re: ESP32-S3-PICO-1 Issues

No worries, shit happens, glad you found the issue!
by ESP_Sprite
Sun Mar 24, 2024 2:24 am
Forum: General Discussion
Topic: External battery charging when connected to USB-C power
Replies: 4
Views: 342

Re: External battery charging when connected to USB-C power

You need to be a bit more specific. What hardware are you using exactly, how have you connected it, what battery do you have connected?
by ESP_Sprite
Sat Mar 23, 2024 3:15 am
Forum: Hardware
Topic: ESP32-S3-PICO-1 Issues
Replies: 5
Views: 323

Re: ESP32-S3-PICO-1 Issues

Do you have access to the U0TxD pin? If so, do you see serial chatter on that when you apply power to the board? Also, can you post the schematics?
by ESP_Sprite
Sat Mar 23, 2024 2:57 am
Forum: ESP-IDF
Topic: opencv component overload DRAM.bss , how can i put into PSRAM
Replies: 4
Views: 277

Re: opencv component overload DRAM.bss , how can i put into PSRAM

If you enable that, you can mark variables to live in PSRAM BSS rather than internal BSS. Example:

Code: Select all

char very_big_variable[1024*1024];
would become

Code: Select all

#include <esp_attr.h>
...
EXT_RAM_BSS_ATTR char very_big_variable[1024*1024];
to allocate it in PSRAM.
by ESP_Sprite
Sat Mar 23, 2024 2:50 am
Forum: General Discussion
Topic: how to configure the ESP32S3 as USB mass storage
Replies: 1
Views: 135

Re: how to configure the ESP32S3 as USB mass storage

There's an example included in ESP-IDF for that.
by ESP_Sprite
Sat Mar 23, 2024 2:48 am
Forum: General Discussion
Topic: problem with the esp32 led
Replies: 1
Views: 143

Re: problem with the esp32 led

You mean the red LED that is on the board? That is not controllable; it's always on when the board is powered.
by ESP_Sprite
Fri Mar 22, 2024 11:46 am
Forum: ESP32 Arduino
Topic: Can ESP32-C6 use GPIO to wake up Deep Sleep?
Replies: 4
Views: 455

Re: Can ESP32-C6 use GPIO to wake up Deep Sleep?

I noticed that External Wakeup can be used to wake DeepSleep with RTC GPIO, but I didn't find any description on the web about which pin of the ESP32 C6 can be multiplexed as RTC GPIO. Can you make a suggestion? See the datasheet , section 2.3.2. Long story short: GPIO0 to GPIO7 are RTC (LP) GPIOs.
by ESP_Sprite
Fri Mar 22, 2024 11:41 am
Forum: ESP-IDF
Topic: opencv component overload DRAM.bss , how can i put into PSRAM
Replies: 4
Views: 277

Re: opencv component overload DRAM.bss , how can i put into PSRAM

There's an option for that somewhere in menuconfig. Note that you do need to annotate the bss variables you want in psram with a certain attribute; see the help for the menuconfig option.
by ESP_Sprite
Fri Mar 22, 2024 2:12 am
Forum: ESP-IDF
Topic: Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode
Replies: 2
Views: 159

Re: Power Management: problems when combining GPIO wakeup with GPIO interrupt in light sleep mode

Looks like the GPIO ISR keeps triggering for some reason, causing an interrupt timeout... Just to check: if you disable the automatic light sleep functions, does it still crash in this way? Also, can you try moving the gpio_config line to after the gpio_isr_handler_add one?