Search found 479 matches

by username
Fri Apr 19, 2024 5:23 pm
Forum: IDEs for ESP-IDF
Topic: fundamaental work of #include in VSCode
Replies: 1
Views: 142

Re: fundamaental work of #include in VSCode

There should be a file named idf_component.yml

In there you would put your dependencies.

If you look at that bluetooth example, look at the idf_component.yml file, and copy whats in there into your projects idf_component.yml file . It will then pull in the necessary files into your project.
by username
Fri Apr 19, 2024 5:17 pm
Forum: General Discussion
Topic: ESP32 not working with external 5V source
Replies: 1
Views: 109

Re: ESP32 not working with external 5V source

When you power it from the batteries do you get 3.3v on the 3.3v pin?
Is EN and GPIO0 pins high ?
did you try pressing the reset button after you connect the batteries.
by username
Sun Mar 24, 2024 4:04 am
Forum: ESP-IDF
Topic: Using GPIO43 and GPIO44 on ESP32-S3
Replies: 7
Views: 839

Re: Using GPIO43 and GPIO44 on ESP32-S3

Did you go into menuconfig and change it ?
by username
Tue Feb 20, 2024 12:27 pm
Forum: General Discussion
Topic: ESP32-S3-WROOM factory USB state before Firmware is loaded
Replies: 4
Views: 2027

Re: ESP32-S3-WROOM factory USB state before Firmware is loaded

@markg85, Thank you very much. It's good to know that.
by username
Sun Jan 28, 2024 8:19 am
Forum: ESP-IDF
Topic: Problem with watchdog !
Replies: 4
Views: 854

Re: Problem with watchdog !

If you go into menuconfig you can disable WDT.
by username
Sat Jan 27, 2024 7:23 am
Forum: ESP-IDF
Topic: Problem with watchdog !
Replies: 4
Views: 854

Re: Problem with watchdog !

You have to remember your running in a RTOS. So if your going to have a while(1) loop that takes to long to do something it will not be able to reset the watchdog in time. Hence you should always use vTaskDelay(x / portTICK_PERIOD_MS); Secondly, you should look into: GPIO.out_w1ts //set a pin GPIO.o...
by username
Thu Dec 14, 2023 6:50 pm
Forum: General Discussion
Topic: TinyUSB Mass Storage Device Example very slow
Replies: 1
Views: 49964

TinyUSB Mass Storage Device Example very slow

Tried the TinyUSB Mass Storage Device Example on a ESP32-S3 with IDF v5.1.2. Configured to use internal flash as storage. Though it works fine, its super slow copying files to it. When I copy a 756k file it took a minute to do it. I know the flash is not that slow because when I copy that same file ...
by username
Fri Nov 17, 2023 9:44 am
Forum: ESP-IDF
Topic: Esp32S3 : Virtual FileSystem Max FileName
Replies: 5
Views: 3535

Re: Esp32S3 : Virtual FileSystem Max FileName

do you have " Long filename support " enabled ?
by username
Thu Nov 16, 2023 3:40 am
Forum: ESP32 Arduino
Topic: Unwanted delay before and after SPI transaction
Replies: 5
Views: 3616

Re: Unwanted delay before and after SPI transaction

Yes, you can specify the CS pin so it does it automatically. I just noticed that you posted in the Arduino section, I only use ESP32-IDF. In IDF you can specify the CS pin so it does it for you. Did a little googling and found this. #include <SPI.h> #define HSPI_MISO 12 #define HSPI_MOSI 13 #define ...
by username
Thu Nov 16, 2023 3:17 am
Forum: ESP32 Arduino
Topic: Unwanted delay before and after SPI transaction
Replies: 5
Views: 3616

Re: Unwanted delay before and after SPI transaction

Is there a specific reason your manually toggling CS ?