mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
driver(GPIO): fixed gpio_wake_up_disable not working for RTC IO (release/3.3)
This commit is contained in:
parent
d7e6eecd66
commit
eab88f51e7
@ -491,8 +491,13 @@ esp_err_t gpio_wakeup_enable(gpio_num_t gpio_num, gpio_int_type_t intr_type)
|
|||||||
esp_err_t gpio_wakeup_disable(gpio_num_t gpio_num)
|
esp_err_t gpio_wakeup_disable(gpio_num_t gpio_num)
|
||||||
{
|
{
|
||||||
GPIO_CHECK(GPIO_IS_VALID_GPIO(gpio_num), "GPIO number error", ESP_ERR_INVALID_ARG);
|
GPIO_CHECK(GPIO_IS_VALID_GPIO(gpio_num), "GPIO number error", ESP_ERR_INVALID_ARG);
|
||||||
GPIO.pin[gpio_num].wakeup_enable = 0;
|
esp_err_t ret = ESP_OK;
|
||||||
return ESP_OK;
|
if (RTC_GPIO_IS_VALID_GPIO(gpio_num)) {
|
||||||
|
ret = rtc_gpio_wakeup_disable(gpio_num);
|
||||||
|
} else {
|
||||||
|
GPIO.pin[gpio_num].wakeup_enable = 0;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
esp_err_t gpio_set_drive_capability(gpio_num_t gpio_num, gpio_drive_cap_t strength)
|
esp_err_t gpio_set_drive_capability(gpio_num_t gpio_num, gpio_drive_cap_t strength)
|
||||||
|
Loading…
Reference in New Issue
Block a user