2 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
4 * Contact: Jin Yoon <jinny.yoon@samsung.com>
5 * Geunsun Lee <gs86.lee@samsung.com>
6 * Eunyoung Lee <ey928.lee@samsung.com>
7 * Junkyu Han <junkyu.han@samsung.com>
9 * Licensed under the Flora License, Version 1.1 (the License);
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://floralicense.org/license/
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an AS IS BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
24 #include <peripheral_io.h>
28 #include "resource_internal.h"
30 void resource_close_touch_sensor(int pin_num)
32 if (!resource_get_info(pin_num)->opened) return;
34 _I("Touch Sensor is finishing...");
35 peripheral_gpio_close(resource_get_info(pin_num)->sensor_h);
36 resource_get_info(pin_num)->opened = 0;
39 int resource_read_touch_sensor(int pin_num, int *out_value)
41 int ret = PERIPHERAL_ERROR_NONE;
43 if (!resource_get_info(pin_num)->opened) {
44 _I("Touch sensor is initializing...");
46 ret = peripheral_gpio_open(pin_num, &resource_get_info(pin_num)->sensor_h);
47 retv_if(!resource_get_info(pin_num)->sensor_h, -1);
49 ret = peripheral_gpio_set_direction(resource_get_info(pin_num)->sensor_h, PERIPHERAL_GPIO_DIRECTION_IN);
50 retv_if(ret != 0, -1);
52 resource_get_info(pin_num)->opened = 1;
55 ret = peripheral_gpio_read(resource_get_info(pin_num)->sensor_h, out_value);
58 _I("Touch Sensor Value : %d", *out_value);