Search found 13 matches
- Mon Sep 11, 2023 9:54 am
- Forum: General Discussion
- Topic: Watchdog triggered Task
- Replies: 4
- Views: 5977
Re: Watchdog triggered Task
Hi ESP_Sprite, thanks for your reply. Sadly I have no other actions after 4 seconds. I'm trying to test LVGL library using a simple task to change screen instead of using buttons. I'm using following functions: - gc9a01_displayInit : simple initialization display function for gc9a01 chip based displ...
- Mon Sep 11, 2023 7:34 am
- Forum: General Discussion
- Topic: Watchdog triggered Task
- Replies: 4
- Views: 5977
Re: Watchdog triggered Task
No updates on this topic?
- Fri Sep 01, 2023 10:23 am
- Forum: General Discussion
- Topic: Watchdog triggered Task
- Replies: 4
- Views: 5977
Watchdog triggered Task
Hello, I have a strange error when running 2 tasks in my design, the Watchdog get triggered after 5 seconds from the starting run of the CPU,[in my configuration file the parameter Task Watchdog timeout period(seconds) is set to 5.], with: E (5662) task_wdt: Task watchdog got triggered. The followin...
- Sun Jan 15, 2023 12:05 pm
- Forum: ESP-IDF
- Topic: Multi thread behaviour
- Replies: 0
- Views: 937
Multi thread behaviour
Hello all, I'm trying to build a RGB LED Lamp using WS2812 leds. Everything work well untill I decided to create multiple scenario to run led light driven by external push button. My Idea was : 0) Project with THREAD_MAIN to initialize everithing and start the THREAD_LED; 1) Power on the lamp with p...
- Sat Dec 26, 2020 9:44 pm
- Forum: Hardware
- Topic: Power ESP32 via VIN pin
- Replies: 1
- Views: 8571
Power ESP32 via VIN pin
Hello everyone, I have developed a board to use ESP32 DEVKIT V1 as micro controller. The board is connected to a 12V 1.8 power supply and provides 5V via 78L05 to VIN to power up the ESP32. The ESP32 has the main aim to drive several Shift Registers and mux. But I have a big problem. When i connect ...
- Mon May 18, 2020 11:50 am
- Forum: ESP-IDF
- Topic: TFT Lcd Display
- Replies: 0
- Views: 2832
TFT Lcd Display
Hi all, I'm trying to use a TFT LCD Display with SPI with Visual Studio Code. I'have downloaded the following lib : https://github.com/loboris/ESP32_TFT_library I'm following the Readme file to setup the project. I'have done following steps : 1)ESP-IDF:Create Project/template [in my folder 19_TFT_LC...
- Mon Apr 06, 2020 7:01 am
- Forum: ESP-IDF
- Topic: How to use SPIFFS
- Replies: 3
- Views: 5804
Re: How to use SPIFFS
HI ALL, I HAVE A BIG UPDATE. I have solved my problem reading better the error log. It was written that i have a "overflow of the heap" So i have changed the declaration of my object using pointer, in this way the memory scope has changed. PresetIO *PresetLoadSave = new PresetIO; Now i can build and...
- Mon Apr 06, 2020 6:40 am
- Forum: ESP-IDF
- Topic: How to use SPIFFS
- Replies: 3
- Views: 5804
Re: How to use SPIFFS
This is my code, Main.cpp: it first main is to create a way to test the class : /* Hello World Example This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WAR...
- Sun Apr 05, 2020 3:18 pm
- Forum: ESP-IDF
- Topic: How to get data from Terminal?
- Replies: 2
- Views: 4163
Re: How to get data from Terminal?
Thakyou for your references.
I have solved my question using the UART example.
I'm using UART 0 attached on Tx0 Rx0 on my ESP DEVKITV1 and sending data from VSC terminal.
I have solved my question using the UART example.
I'm using UART 0 attached on Tx0 Rx0 on my ESP DEVKITV1 and sending data from VSC terminal.
- Sun Apr 05, 2020 3:14 pm
- Forum: ESP-IDF
- Topic: How to use SPIFFS
- Replies: 3
- Views: 5804
How to use SPIFFS
Hi All. It is a couple of weeks I'm playing with ESP32 DevKit V1. Now I'm stduding how to save file on SPIFFS partition. I can create the partition and save simple file using the example. Now I want to create an advanced sketch where i have to save several structures on this kind of file. I know i c...