Fixed error in "touch_ll_get_sleep_time" function for ESP32

Merges https://github.com/espressif/esp-idf/pull/6895
This commit is contained in:
Sergey Gorban 2021-04-18 12:04:19 +02:00 committed by laokaiyao
parent 37634f09b2
commit f74b5accf3

View File

@ -100,7 +100,7 @@ static inline void touch_ll_set_sleep_time(uint16_t sleep_time)
*/
static inline void touch_ll_get_sleep_time(uint16_t *sleep_time)
{
*sleep_time = HAL_FORCE_READ_U32_REG_FIELD(SENS.sar_touch_ctrl1, touch_meas_delay);
*sleep_time = HAL_FORCE_READ_U32_REG_FIELD(SENS.sar_touch_ctrl2, touch_sleep_cycles);
}
/**