-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcnl4040.c
197 lines (131 loc) · 3.44 KB
/
vcnl4040.c
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#include "vcnl4040.h"
#include "string.h"
#ifdef CC1312R1
#include <ti/sysbios/BIOS.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Clock.h>
#endif
#define VCNL4040_ADDRESS 0x60
#define ALS_CONF 0x00
#define PS_CONF1_2 0x03
#define PS_CONF3_PS_MS 0x04
#define PS_Data 0x08
#define ALS_Data 0x09
#define White_Data 0x0A
#define ID 0x0C
typedef union
{
struct
{
uint16_t ALS_SD :1;
uint16_t ALS_INT_EN :1;
uint16_t ALS_PERS :2;
uint16_t Reserved0 :2;
uint16_t ALS_IT :2;
uint16_t Reserved1 :8;
} bits;
uint16_t value;
} als_conf_t;
typedef union
{
struct
{
uint16_t PS_SD :1;
uint16_t PS_IT :3;
uint16_t PS_PERS :2;
uint16_t PS_Duty :2;
uint16_t PS_INT :2;
uint16_t Reserved0 :1;
uint16_t PS_HD :1;
uint16_t Reserved1 :4;
} bits;
uint16_t value;
} ps_conf1_2;
typedef union
{
struct
{
uint16_t PS_SC_EN :1;
uint16_t Reserved0 :1;
uint16_t PS_TRIG :1;
uint16_t PS_AF :1;
uint16_t PS_SMART_PERS :1;
uint16_t PS_MPS :2;
uint16_t Reserved1 :1;
uint16_t LED_I :3;
uint16_t Reserved2 :3;
uint16_t PS_MS :1;
uint16_t White_EN :1;
} bits;
uint16_t value;
} ps_conf3_ps_ms;
#ifdef CC1312R1
static I2C_Handle i2c;
static I2C_Transaction i2cTransaction;
#endif
#ifdef CC1312R1
void set_vcnl4040_i2c_instance(I2C_Handle i2cInstance)
{
i2c = i2cInstance;
}
#endif
static uint8_t i2c_write_buffer(uint8_t address, uint8_t reg, uint8_t *value,
const uint8_t buffer_size)
{
uint8_t i2c_state = 0x00;
uint8_t txBuffer[buffer_size + 1];
txBuffer[0] = reg;
memcpy(txBuffer + 1, value, buffer_size);
#ifdef CC1312R1
if (i2c != NULL)
{
i2cTransaction.writeBuf = txBuffer;
i2cTransaction.readBuf = NULL;
i2cTransaction.slaveAddress = address;
i2cTransaction.writeCount = buffer_size + 1;
i2cTransaction.readCount = 0;
i2c_state = I2C_transfer(i2c, &i2cTransaction);
}
#endif
return i2c_state;
}
static uint8_t i2c_read_buffer(uint8_t address, uint8_t reg,
uint8_t *read_value, const uint8_t buffer_size)
{
uint8_t i2c_state = 0x00;
uint8_t txValue = reg;
uint8_t rxBuffer[buffer_size];
#ifdef CC1312R1
if (i2c != NULL)
{
i2cTransaction.writeBuf = &txValue;
i2cTransaction.readBuf = rxBuffer;
i2cTransaction.slaveAddress = address;
i2cTransaction.writeCount = 1;
i2cTransaction.readCount = buffer_size;
i2c_state = I2C_transfer(i2c, &i2cTransaction);
memcpy(read_value, rxBuffer, buffer_size);
}
#endif
return i2c_state;
}
uint8_t init_vcnl4040()
{
uint8_t i2c_state = 0x00;
uint8_t init_value[2] = { 0x00 };
als_conf_t als_conf;
als_conf.value = 0x00;
init_value[0] = (als_conf.value & 0xFF);
init_value[1] = (als_conf.value >> 8);
i2c_state = i2c_write_buffer(VCNL4040_ADDRESS, ALS_CONF, init_value, 2);
return i2c_state;
}
uint8_t get_vcnl4040_ambient_light(uint16_t *ambient_light)
{
uint8_t i2c_state = 0x00;
uint8_t read_value[2] = { 0x00 };
i2c_state = i2c_read_buffer(VCNL4040_ADDRESS, ALS_Data, read_value, 2);
uint16_t value = ((uint16_t) read_value[1] << 8 | read_value[0]);
*ambient_light = value * 0.1;
return i2c_state;
}