summaryrefslogtreecommitdiff
path: root/include/body_detection.h
blob: 879ada4cb56911c9b7e6b4000bd929816addb82d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Copyright 2020 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __CROS_EC_BODY_DETECTION_H
#define __CROS_EC_BODY_DETECTION_H

#include <stdint.h>
#include <stdbool.h>

enum body_detect_states {
	BODY_DETECTION_OFF_BODY,
	BODY_DETECTION_ON_BODY
};

/* get/set the state of body detection */
enum body_detect_states body_detect_get_state(void);
void body_detect_change_state(enum body_detect_states state, bool spoof);

/* Reset the data. This should be called when ODR is changed*/
void body_detect_reset(void);

/* Body detect main function. This should be called when new sensor data come */
void body_detect(void);

/* enable/disable body detection */
void body_detect_set_enable(int enable);

/* get enable state of body detection */
int body_detect_get_enable(void);

void body_detect_set_spoof(int enable);
bool body_detect_get_spoof(void);

#endif /* __CROS_EC_BODY_DETECTION_H */