Search found 3 matches

by florinbaciu
Mon Oct 30, 2023 2:06 pm
Forum: ESP32 Arduino
Topic: Combining arduino code and esp-idf C-code for UART communication
Replies: 3
Views: 4817

Re: Combining arduino code and esp-idf C-code for UART communication

No. Main app is not loop. Loop is while(1) or for(;;) or while(true) etc. Setup is in main, the code before while(1) will run only once and the while(1) will run in loop.
by florinbaciu
Tue Oct 10, 2023 12:16 pm
Forum: ESP32 Arduino
Topic: Problem with ESP32 CPU crashing when using TFT_eSPI library
Replies: 2
Views: 4783

Re: Problem with ESP32 CPU crashing when using TFT_eSPI library

your touch use same SPI pins for tft? i think its a problem with tft commands.
by florinbaciu
Wed Feb 08, 2023 2:25 pm
Forum: ESP32 Arduino
Topic: Getting started with ESP32-DevKitM-1 - how to configure IDE for single core?
Replies: 4
Views: 7999

Re: Getting started with ESP32-DevKitM-1 - how to configure IDE for single core?

(Running on single core variant of a chip, but app is built with multi-core support) it says in verbose. Maybe this is why the application keeps restarting.. Try to put this code above everything before #include the following: #if CONFIG_FREERTOS_UNICORE #define ARDUINO_RUNNING_CORE 0 #else #define ...