proximity8 2.0.0.0
proximity8.h
Go to the documentation of this file.
1/*
2 * MikroSDK - MikroE Software Development Kit
3 * Copyright© 2020 MikroElektronika d.o.o.
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without restriction,
8 * including without limitation the rights to use, copy, modify, merge,
9 * publish, distribute, sublicense, and/or sell copies of the Software,
10 * and to permit persons to whom the Software is furnished to do so,
11 * subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22 * OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
33// ----------------------------------------------------------------------------
34
35#ifndef PROXIMITY8_H
36#define PROXIMITY8_H
37
42#ifdef PREINIT_SUPPORTED
43#include "preinit.h"
44#endif
45
46#ifdef MikroCCoreVersion
47 #if MikroCCoreVersion >= 1
48 #include "delays.h"
49 #endif
50#endif
51
52#include "drv_digital_out.h"
53#include "drv_digital_in.h"
54#include "drv_i2c_master.h"
55
56// -------------------------------------------------------------- PUBLIC MACROS
66#define PROXIMITY8_MAP_MIKROBUS( cfg, mikrobus ) \
67 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
68 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
69 cfg.int_pin = MIKROBUS( mikrobus, MIKROBUS_INT )
76#define PROXIMITY8_RETVAL uint8_t
77
78#define PROXIMITY8_OK 0x00
79#define PROXIMITY8_INIT_ERROR 0xFF
86#define PROXIMITY8_REG_PS_CONFIG_12 0x03
87#define PROXIMITY8_REG_PS_CONFIG_34 0x04
88#define PROXIMITY8_REG_THRESHOLD_LOW 0x05
89#define PROXIMITY8_REG_THRESHOLD_HIGH 0x06
90#define PROXIMITY8_REG_CANCELLATION_LEVEL 0x07
91#define PROXIMITY8_REG_PS_CONFIG_5 0x08
92#define PROXIMITY8_REG_PROX_DATA 0xF2
93#define PROXIMITY8_REG_INTERRUPT_FLAG 0xF3
94#define PROXIMITY8_REG_DEVICE_ID 0xF4
101#define PROXIMITY8_CFG12_PS_IT_1T 0x0000
102#define PROXIMITY8_CFG12_PS_IT_2T 0x4000
103#define PROXIMITY8_CFG12_PS_IT_4T 0x8000
104#define PROXIMITY8_CFG12_PS_IT_8T 0xC000
105#define PROXIMITY8_CFG12_MPS_1 0x0000
106#define PROXIMITY8_CFG12_MPS_2 0x1000
107#define PROXIMITY8_CFG12_MPS_4 0x2000
108#define PROXIMITY8_CFG12_MPS_8 0x3000
109#define PROXIMITY8_CFG12_ITB_25us 0x0000
110#define PROXIMITY8_CFG12_ITB_50us 0x0800
111#define PROXIMITY8_CFG12_PERIOD_8ms 0x0000
112#define PROXIMITY8_CFG12_PERIOD_16ms 0x0040
113#define PROXIMITY8_CFG12_PERIOD_32ms 0x0080
114#define PROXIMITY8_CFG12_PERIOD_64ms 0x00C0
115#define PROXIMITY8_CFG12_PERS_1 0x0000
116#define PROXIMITY8_CFG12_PERS_2 0x0010
117#define PROXIMITY8_CFG12_PERS_3 0x0020
118#define PROXIMITY8_CFG12_PERS_4 0x0030
119#define PROXIMITY8_CFG12_INT_ENABLE 0x0008
120#define PROXIMITY8_CFG12_INT_DISABLE 0x0004
121#define PROXIMITY8_CFG12_SMART_PERS_DISABLE 0x0000
122#define PROXIMITY8_CFG12_SMART_PERS_ENABLE 0x0002
123#define PROXIMITY8_CFG12_SD_POWER_ON 0x0000
124#define PROXIMITY8_CFG12_SD_SHUT_DOWN 0x0001
131#define PROXIMITY8_CFG34_OFF_SUNLIGHT_CANCEL 0x0000
132#define PROXIMITY8_CFG34_ON_SUNLIGHT_CANCEL 0x8000
133#define PROXIMITY8_CFG34_SC_CUR_X1 0x0000
134#define PROXIMITY8_CFG34_SC_CUR_X2 0x2000
135#define PROXIMITY8_CFG34_SC_CUR_X4 0x4000
136#define PROXIMITY8_CFG34_SC_CUR_X8 0x6000
137#define PROXIMITY8_CFG34_PS_OUTPUT_12bit 0x0000
138#define PROXIMITY8_CFG34_PS_OUTPUT_16bit 0x1000
139#define PROXIMITY8_CFG34_VCSEL_I_7mA 0x0000
140#define PROXIMITY8_CFG34_VCSEL_I_11mA 0x0100
141#define PROXIMITY8_CFG34_VCSEL_I_14mA 0x0200
142#define PROXIMITY8_CFG34_VCSEL_I_17mA 0x0300
143#define PROXIMITY8_CFG34_VCSEL_I_20mA 0x0400
144#define PROXIMITY8_CFG34_AF_MODE_AUTO 0x0000
145#define PROXIMITY8_CFG34_AF_MODE_FORCE 0x0040
146#define PROXIMITY8_CFG34_FOR_TRIG_ACTIVE 0x0000
147#define PROXIMITY8_CFG34_FOR_TRIG_ONE_TIME 0x0020
154#define PROXIMITY8_DEVICE_ID 0x0588
155#define PROXIMITY8_DEVICE_SLAVE_ADDRESS 0x60
158 // End group macro
159// --------------------------------------------------------------- PUBLIC TYPES
168typedef struct
169{
170 // Input pins
171
172 digital_in_t int_pin;
173
174 // Modules
175
176 i2c_master_t i2c;
177
178 // ctx variable
179
181
183
187typedef struct
188{
189 // Communication gpio pins
190
191 pin_name_t scl;
192 pin_name_t sda;
193
194 // Additional gpio pins
195
196 pin_name_t int_pin;
197
198 // static variable
199
200 uint32_t i2c_speed;
201 uint8_t i2c_address;
202
204
205 // End types group
206// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
207
213#ifdef __cplusplus
214extern "C"{
215#endif
216
226
236
245
256void proximity8_generic_write ( proximity8_t *ctx, uint8_t reg, uint16_t *data_buf, uint8_t len );
257
267void proximity8_generic_read ( proximity8_t *ctx, uint8_t reg, uint16_t *data_buf );
268
279
280#ifdef __cplusplus
281}
282#endif
283#endif // _PROXIMITY8_H_
284
285 // End public_function group
287
288// ------------------------------------------------------------------------- END
#define PROXIMITY8_RETVAL
Definition proximity8.h:76
void proximity8_generic_read(proximity8_t *ctx, uint8_t reg, uint16_t *data_buf)
Generic read function.
void proximity8_cfg_setup(proximity8_cfg_t *cfg)
Config Object Initialization function.
void proximity8_default_cfg(proximity8_t *ctx)
Click Default Configuration function.
uint8_t proximity8_get_interrupt_state(proximity8_t *ctx)
Get interrupt state on the INT pin.
void proximity8_generic_write(proximity8_t *ctx, uint8_t reg, uint16_t *data_buf, uint8_t len)
Generic write function.
PROXIMITY8_RETVAL proximity8_init(proximity8_t *ctx, proximity8_cfg_t *cfg)
Initialization function.
Click configuration structure definition.
Definition proximity8.h:188
uint32_t i2c_speed
Definition proximity8.h:200
pin_name_t scl
Definition proximity8.h:191
pin_name_t int_pin
Definition proximity8.h:196
pin_name_t sda
Definition proximity8.h:192
uint8_t i2c_address
Definition proximity8.h:201
Click ctx object definition.
Definition proximity8.h:169
digital_in_t int_pin
Definition proximity8.h:172
i2c_master_t i2c
Definition proximity8.h:176
uint8_t slave_address
Definition proximity8.h:180