force5 2.0.0.0
force5.h
Go to the documentation of this file.
1/****************************************************************************
2** Copyright (C) 2020 MikroElektronika d.o.o.
3** Contact: https://www.mikroe.com/contact
4**
5** Permission is hereby granted, free of charge, to any person obtaining a copy
6** of this software and associated documentation files (the "Software"), to deal
7** in the Software without restriction, including without limitation the rights
8** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9** copies of the Software, and to permit persons to whom the Software is
10** furnished to do so, subject to the following conditions:
11** The above copyright notice and this permission notice shall be
12** included in all copies or substantial portions of the Software.
13**
14** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
19** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20** USE OR OTHER DEALINGS IN THE SOFTWARE.
21****************************************************************************/
22
28#ifndef FORCE5_H
29#define FORCE5_H
30
31#ifdef __cplusplus
32extern "C"{
33#endif
34
39#ifdef PREINIT_SUPPORTED
40#include "preinit.h"
41#endif
42
43#ifdef MikroCCoreVersion
44 #if MikroCCoreVersion >= 1
45 #include "delays.h"
46 #endif
47#endif
48
49#include "drv_digital_out.h"
50#include "drv_digital_in.h"
51#include "drv_i2c_master.h"
52
73#define FORCE5_STATES_BIT_MASK 0x03
74#define FORCE5_STATES_NORMAL_OPERATION 0x00
75#define FORCE5_STATES_COMMAND_MODE 0x01
76#define FORCE5_STATES_STALE_DATA 0x02
77#define FORCE5_STATES_DIAGNOSTIC_CONDITION 0x03
78
83#define FORCE5_FORCE_SENSOR_10_N 10.0
84#define FORCE5_FORCE_SENSOR_25_N 25.0
85
86#define FORCE5_FORCE_MAX_VALUE 14745.0
87
93#define FORCE5_SET_DEV_ADDR 0x28
94
95 // force5_set
96
111#define FORCE5_MAP_MIKROBUS( cfg, mikrobus ) \
112 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
113 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA )
114
115 // force5_map
116 // force5
117
122typedef struct
123{
124 // Modules
125 i2c_master_t i2c;
127 // I2C slave address
130} force5_t;
131
136typedef struct
137{
138 pin_name_t scl;
139 pin_name_t sda;
141 uint32_t i2c_speed;
142 uint8_t i2c_address;
145
150typedef struct
151{
152 uint8_t status_data;
153 uint16_t force_data;
154 uint16_t temp_data;
156
161typedef struct
162{
165
170typedef enum
171{
173 FORCE5_ERROR = -1
174
176
193
207err_t force5_init ( force5_t *ctx, force5_cfg_t *cfg );
208
223err_t force5_generic_write ( force5_t *ctx, uint8_t reg, uint8_t *tx_buf, uint8_t tx_len );
224
239err_t force5_generic_read ( force5_t *ctx, uint8_t reg, uint8_t *rx_buf, uint8_t rx_len );
240
254err_t force5_read_byte ( force5_t *ctx, uint8_t *rx_data, uint8_t n_bytes );
255
264void force5_read_all_data ( force5_t *ctx, force5_data_t *force_data );
265
275uint8_t force5_get_force_value ( force5_t *ctx, uint16_t *force );
276
286uint8_t force5_get_temperature_value ( force5_t *ctx, uint16_t *temp );
287
298
308
317
318#ifdef __cplusplus
319}
320#endif
321#endif // FORCE5_H
322
323 // force5
324
325// ------------------------------------------------------------------------ END
force5_return_value_t
Force 5 Click return value data.
Definition force5.h:171
@ FORCE5_ERROR
Definition force5.h:173
@ FORCE5_OK
Definition force5.h:172
err_t force5_init(force5_t *ctx, force5_cfg_t *cfg)
Force 5 initialization function.
err_t force5_generic_write(force5_t *ctx, uint8_t reg, uint8_t *tx_buf, uint8_t tx_len)
Force 5 I2C writing function.
uint8_t force5_calibration(force5_t *ctx, force5_calibration_t *calib_data)
Calibration the sensor function.
uint8_t force5_get_force_value(force5_t *ctx, uint16_t *force)
Get force value function.
err_t force5_read_byte(force5_t *ctx, uint8_t *rx_data, uint8_t n_bytes)
Generic read data function.
err_t force5_generic_read(force5_t *ctx, uint8_t reg, uint8_t *rx_buf, uint8_t rx_len)
Force 5 I2C reading function.
uint8_t force5_get_temperature_value(force5_t *ctx, uint16_t *temp)
Get temperature value function.
void force5_read_all_data(force5_t *ctx, force5_data_t *force_data)
Read all data function.
float force5_get_temperature(force5_t *ctx)
Get temperature function.
float force5_get_force(force5_t *ctx, force5_calibration_t calib_data)
Get force function.
void force5_cfg_setup(force5_cfg_t *cfg)
Force 5 configuration object setup function.
force5_calibration_t calib_data
Definition main.c:29
Force 5 Click calibration object.
Definition force5.h:162
uint16_t force_claib_data
Definition force5.h:163
Force 5 Click configuration object.
Definition force5.h:137
uint32_t i2c_speed
Definition force5.h:141
pin_name_t scl
Definition force5.h:138
pin_name_t sda
Definition force5.h:139
uint8_t i2c_address
Definition force5.h:142
Force 5 Click data object.
Definition force5.h:151
uint16_t force_data
Definition force5.h:153
uint16_t temp_data
Definition force5.h:154
uint8_t status_data
Definition force5.h:152
Force 5 Click context object.
Definition force5.h:123
i2c_master_t i2c
Definition force5.h:125
uint8_t slave_address
Definition force5.h:128