Hi,
I have created a task with xEventGroupWaitBits, to set the eventbit i using rtos timer callback function for every 10 sec. But I'm receiving task wdt trigger for every 5 sec.
xTaskCreate(Task, "Data Collector Task", 2048, NULL, configMAX_PRIORITIES, NULL) == pdTRUE;
dataTimer = xTimerCreate ...
Search found 4 matches
- Thu Feb 01, 2024 7:58 am
- Forum: ESP-IDF
- Topic: Task wdt triggering while eventgroupwaitbits in task
- Replies: 2
- Views: 888
- Thu Jan 25, 2024 10:54 am
- Forum: Hardware
- Topic: GPIO wakeup issue in deep sleep ESP32C6
- Replies: 0
- Views: 1041
GPIO wakeup issue in deep sleep ESP32C6
Hi,
I'm using ESP32C6. I want to configure GPIO NUM 3 as a interrupt in both case low to high / high to low.
Default the pin state is HIGH. When connected the pin goes low until disconnected from the PIN 3.
In wakeup I configured interrupt as GPIO_INTR_ANYEDGE, So I receive both interrupt cases ...
I'm using ESP32C6. I want to configure GPIO NUM 3 as a interrupt in both case low to high / high to low.
Default the pin state is HIGH. When connected the pin goes low until disconnected from the PIN 3.
In wakeup I configured interrupt as GPIO_INTR_ANYEDGE, So I receive both interrupt cases ...
- Mon Jan 22, 2024 12:44 pm
- Forum: ESP-IDF
- Topic: Build error in cmakelists
- Replies: 0
- Views: 564
Build error in cmakelists
Hi ,
Below I share my project structure, In this My_Gateway is main project, Corecode and SOC is the application/upper layer of my project. How can I link those 2 folder to main project. please provide cmakelists files.
ESP_PROJECT/
|--My_Gateway/
| |-- main/
| | |-- CMakeLists.txt
| | |-- main.c ...
Below I share my project structure, In this My_Gateway is main project, Corecode and SOC is the application/upper layer of my project. How can I link those 2 folder to main project. please provide cmakelists files.
ESP_PROJECT/
|--My_Gateway/
| |-- main/
| | |-- CMakeLists.txt
| | |-- main.c ...
- Thu Jan 11, 2024 6:28 am
- Forum: Hardware
- Topic: ESP32C6-Strapping pin configuration
- Replies: 1
- Views: 20196
ESP32C6-Strapping pin configuration
I'm using ESP32C6 module for our application. Due to IO pin constrain I want to use GPIO 8(strapping pin) as IO for led toggle while running application. After module reset, in main I do below gpio configuration,
gpio_config_t io_conf = {};
io_conf.pin_bit_mask = 1ULL << GPIO_NUM_8;
io_conf.mode ...
gpio_config_t io_conf = {};
io_conf.pin_bit_mask = 1ULL << GPIO_NUM_8;
io_conf.mode ...