6b13f685e
김민수
BSP 최초 추가
|
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
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef __UAPI_LINUX_ISL29023_H__
#define __UAPI_LINUX_ISL29023_H__
#include <linux/types.h>
#define ISL29023_PD_MODE 0x0
#define ISL29023_ALS_ONCE_MODE 0x1
#define ISL29023_IR_ONCE_MODE 0x2
#define ISL29023_ALS_CONT_MODE 0x5
#define ISL29023_IR_CONT_MODE 0x6
#define ISL29023_INT_PERSISTS_1 0x0
#define ISL29023_INT_PERSISTS_4 0x1
#define ISL29023_INT_PERSISTS_8 0x2
#define ISL29023_INT_PERSISTS_16 0x3
#define ISL29023_RES_16 0x0
#define ISL29023_RES_12 0x1
#define ISL29023_RES_8 0x2
#define ISL29023_RES_4 0x3
#define ISL29023_RANGE_1K 0x0
#define ISL29023_RANGE_4K 0x1
#define ISL29023_RANGE_16K 0x2
#define ISL29023_RANGE_64K 0x3
#endif
|