mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/touchpad_interrupt_v3.3' into 'release/v3.3'
Change critical section API for touch pad interrupt (backport v3.3) See merge request espressif/esp-idf!7107
This commit is contained in:
commit
9945c2fdcd
@ -785,9 +785,9 @@ uint32_t IRAM_ATTR touch_pad_get_status()
|
||||
|
||||
esp_err_t IRAM_ATTR touch_pad_clear_status()
|
||||
{
|
||||
portENTER_CRITICAL(&rtc_spinlock);
|
||||
portENTER_CRITICAL_SAFE(&rtc_spinlock);
|
||||
SENS.sar_touch_ctrl2.touch_meas_en_clr = 1;
|
||||
portEXIT_CRITICAL(&rtc_spinlock);
|
||||
portEXIT_CRITICAL_SAFE(&rtc_spinlock);
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user