c3dhall2 2.0.0.0
c3dhall2.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 C3DHALL2_H
36#define C3DHALL2_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 C3DHALL2_MAP_MIKROBUS( cfg, mikrobus ) \
67 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
68 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA )
76#define C3DHALL2_DEVICE_ADDRESS 0x5E
77
82#define C3DHALL2_M1_I2C_SLAVE_ADDRESS_0 0x00
83#define C3DHALL2_M1_I2C_SLAVE_ADDRESS_1 0x20
84#define C3DHALL2_M1_I2C_SLAVE_ADDRESS_2 0x40
85#define C3DHALL2_M1_I2C_SLAVE_ADDRESS_3 0x60
86#define C3DHALL2_M1_INTERRUPT_ENABLE 0x04
87#define C3DHALL2_M1_INTERRUPT_DISABLE 0x00
88#define C3DHALL2_M1_FAST_MODE_ENABLE 0x02
89#define C3DHALL2_M1_FAST_MODE_DISABLE 0x00
90#define C3DHALL2_M1_LOW_POWER_MODE_ENABLE 0x01
91#define C3DHALL2_M1_LOW_POWER_MODE_DISABLE 0x00
98#define C3DHALL2_M2_TEMPERATURE_ENABLE 0x00
99#define C3DHALL2_M2_TEMPERATURE_DISABLE 0x80
100#define C3DHALL2_M2_LOW_POWER_PERIOD_100MS 0x00
101#define C3DHALL2_M2_LOW_POWER_PERIOD_12MS 0x40
102#define C3DHALL2_M2_PARITY_TEST_ENABLE 0x00
103#define C3DHALL2_M2_PARITY_TEST_DISABLE 0x20
106 // End group macro
107// --------------------------------------------------------------- PUBLIC TYPES
116typedef struct
117{
118
119 // Modules
120
121 i2c_master_t i2c;
122
123 // ctx variable
124
126
127} c3dhall2_t;
128
132typedef struct
133{
134 // Communication gpio pins
135
136 pin_name_t scl;
137 pin_name_t sda;
138
139 // static variable
140
141 uint32_t i2c_speed;
142 uint8_t i2c_address;
143
145
150typedef enum
151{
153 C3DHALL2_ERROR = -1
154
156
157 // End types group
158
159// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
160
166#ifdef __cplusplus
167extern "C"{
168#endif
169
179
189
199
209err_t c3dhall2_write_data ( c3dhall2_t *ctx, uint8_t *data_buf, uint16_t len );
210
220err_t c3dhall2_read_data ( c3dhall2_t *ctx, uint8_t *data_buf, uint16_t len );
221
231err_t c3dhall2_get_axis_temp_data ( c3dhall2_t *ctx, float *axis_data, float *temp_data );
232
255err_t c3dhall2_configuration ( c3dhall2_t *ctx, uint8_t settings1, uint8_t settings2 );
256
257
258#ifdef __cplusplus
259}
260#endif
261#endif // _C3DHALL2_H_
262
263 // End public_function group
265
266// ------------------------------------------------------------------------- END
err_t c3dhall2_configuration(c3dhall2_t *ctx, uint8_t settings1, uint8_t settings2)
Functions for settings chip for measurement.
err_t c3dhall2_init(c3dhall2_t *ctx, c3dhall2_cfg_t *cfg)
Initialization function.
err_t c3dhall2_read_data(c3dhall2_t *ctx, uint8_t *data_buf, uint16_t len)
Generic read function.
err_t c3dhall2_get_axis_temp_data(c3dhall2_t *ctx, float *axis_data, float *temp_data)
Functions for getting Hall axis data and Temperature data.
err_t c3dhall2_default_cfg(c3dhall2_t *ctx)
Default configuration initialization function.
err_t c3dhall2_write_data(c3dhall2_t *ctx, uint8_t *data_buf, uint16_t len)
Generic write function.
void c3dhall2_cfg_setup(c3dhall2_cfg_t *cfg)
Config Object Initialization function.
c3dhall2_return_value_t
3D Hall 2 Click return value data.
Definition c3dhall2.h:151
@ C3DHALL2_OK
Definition c3dhall2.h:152
@ C3DHALL2_ERROR
Definition c3dhall2.h:153
Click configuration structure definition.
Definition c3dhall2.h:133
uint32_t i2c_speed
Definition c3dhall2.h:141
pin_name_t scl
Definition c3dhall2.h:136
pin_name_t sda
Definition c3dhall2.h:137
uint8_t i2c_address
Definition c3dhall2.h:142
Click ctx object definition.
Definition c3dhall2.h:117
i2c_master_t i2c
Definition c3dhall2.h:121
uint8_t slave_address
Definition c3dhall2.h:125