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(low to high / high to low).
In deep sleep, I have configured as below so that i receive only (high to low)interrupt and wakeup from deep sleep.
" const gpio_config_t config1 = {
.pin_bit_mask = BIT(3),
.mode = GPIO_MODE_INPUT,
.intr_type = GPIO_INTR_POSEDGE,
}
ESP_ERROR_CHECK(gpio_config(&config1));
ESP_ERROR_CHECK(esp_deep_sleep_enable_gpio_wakeup(BIT(3), ESP_GPIO_WAKEUP_GPIO_LOW));
printf("Enabling GPIO wakeup on pins low GPIO%d\n", 3);
"
Likewise I tried to change
.intr_type = GPIO_INTR_NEGEDGE,
ESP_ERROR_CHECK(esp_deep_sleep_enable_gpio_wakeup(BIT(3), ESP_GPIO_WAKEUP_GPIO_HIGH));
But no interrupt detect from deep sleep.
How can I configure this pin 3 for (low to high) interrupt?
GPIO wakeup issue in deep sleep ESP32C6
Jump to
- English Forum
- Explore
- News
- General Discussion
- FAQ
- Documentation
- Documentation
- Sample Code
- Discussion Forum
- Hardware
- ESP-IDF
- ESP-BOX
- ESP-ADF
- ESP-MDF
- ESP-WHO
- ESP-SkaiNet
- ESP32 Arduino
- IDEs for ESP-IDF
- ESP-AT
- ESP IoT Solution
- ESP RainMaker
- Rust
- ESP8266
- Report Bugs
- Showcase
- Chinese Forum 中文社区
- 活动区
- 乐鑫活动专区
- 讨论区
- 全国大学生物联网设计竞赛乐鑫答疑专区
- ESP-IDF 中文讨论版
- 《ESP32-C3 物联网工程开发实战》书籍讨论版
- 中文文档讨论版
- ESP-AT 中文讨论版
- ESP-BOX 中文讨论版
- ESP IoT Solution 中文讨论版
- ESP-ADF 中文讨论版
- ESP Mesh 中文讨论版
- ESP Cloud 中文讨论版
- ESP-WHO 中文讨论版
- ESP-SkaiNet 中文讨论版
- ESP 生产支持讨论版
- 硬件问题讨论
- 项目展示
Who is online
Users browsing this forum: No registered users and 102 guests
- All times are UTC
- Top
- Delete cookies
About Us
Espressif Systems is a fabless semiconductor company providing cutting-edge low power WiFi SoCs and wireless solutions for wireless communications and Internet of Things applications. ESP8266EX and ESP32 are some of our products.