| 
									
										
										
										
											2023-07-05 17:33:32 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-11-27 20:08:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // The HAL layer for Touch Sensor (common part)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "hal/touch_sensor_hal.h"
 | 
					
						
							|  |  |  | #include "hal/touch_sensor_types.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-07 10:13:17 +08:00
										 |  |  | #include "soc/soc_caps.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-27 20:08:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void touch_hal_config(touch_pad_t touch_num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     touch_ll_set_threshold(touch_num, SOC_TOUCH_PAD_THRESHOLD_MAX); | 
					
						
							|  |  |  |     touch_ll_set_slope(touch_num, TOUCH_PAD_SLOPE_DEFAULT); | 
					
						
							|  |  |  |     touch_ll_set_tie_option(touch_num, TOUCH_PAD_TIE_OPT_DEFAULT); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void touch_hal_set_voltage(const touch_hal_volt_t *volt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     touch_ll_set_voltage_high(volt->refh); | 
					
						
							|  |  |  |     touch_ll_set_voltage_low(volt->refl); | 
					
						
							|  |  |  |     touch_ll_set_voltage_attenuation(volt->atten); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void touch_hal_get_voltage(touch_hal_volt_t *volt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     touch_ll_get_voltage_high(&volt->refh); | 
					
						
							|  |  |  |     touch_ll_get_voltage_low(&volt->refl); | 
					
						
							|  |  |  |     touch_ll_get_voltage_attenuation(&volt->atten); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void touch_hal_set_meas_mode(touch_pad_t touch_num, const touch_hal_meas_mode_t *meas) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     touch_ll_set_slope(touch_num, meas->slope); | 
					
						
							|  |  |  |     touch_ll_set_tie_option(touch_num, meas->tie_opt); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void touch_hal_get_meas_mode(touch_pad_t touch_num, touch_hal_meas_mode_t *meas) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     touch_ll_get_slope(touch_num, &meas->slope); | 
					
						
							|  |  |  |     touch_ll_get_tie_option(touch_num, &meas->tie_opt); | 
					
						
							| 
									
										
										
										
											2020-11-10 18:40:01 +11:00
										 |  |  | } |