currentsens2 2.1.0.0
currentsens2.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 CURRENTSENS2_H
29#define CURRENTSENS2_H
30
31#ifdef __cplusplus
32extern "C"{
33#endif
34
35#include "mikrosdk_version.h"
36
37#ifdef __GNUC__
38#if mikroSDK_GET_VERSION < 20800ul
39#include "rcu_delays.h"
40#else
41#include "delays.h"
42#endif
43#endif
44
45#include "drv_digital_out.h"
46#include "drv_digital_in.h"
47#include "drv_analog_in.h"
48
69#define CURRENTSENS2_CONV_FACTOR 12.5f
70#define CURRENTSENS2_NUM_CONVERSIONS 10
71#define CURRENTSENS2_NUM_OF_PASSES_1 1
72#define CURRENTSENS2_NUM_OF_PASSES_2 2
73#define CURRENTSENS2_NUM_OF_PASSES_3 3
74 // currentsens2_set
76
91#define CURRENTSENS2_MAP_MIKROBUS( cfg, mikrobus ) \
92 cfg.an = MIKROBUS( mikrobus, MIKROBUS_AN ); \
93 cfg.int_pin = MIKROBUS( mikrobus, MIKROBUS_INT )
94 // currentsens2_map // currentsens2
97
102typedef struct
103{
104 digital_in_t int_pin;
106 analog_in_t adc;
108 float zero_val;
109 uint8_t no_of_turns;
112
117typedef struct
118{
119 pin_name_t an;
120 pin_name_t int_pin;
122 analog_in_resolution_t resolution;
123 float vref;
126
131typedef enum
132{
135
137
154
169
181err_t currentsens2_read_an_pin_value ( currentsens2_t *ctx, uint16_t *data_out );
182
196err_t currentsens2_read_an_pin_vol ( currentsens2_t *ctx, float *data_out );
197
208
219
231
243err_t currentsens2_get_current ( currentsens2_t *ctx, float *current );
244
245#ifdef __cplusplus
246}
247#endif
248#endif // CURRENTSENS2_H
249 // currentsens2
251
252// ------------------------------------------------------------------------ END
currentsens2_return_value_t
Current Sens 2 Click return value data.
Definition: currentsens2.h:132
@ CURRENTSENS2_ERROR
Definition: currentsens2.h:134
@ CURRENTSENS2_OK
Definition: currentsens2.h:133
void currentsens2_cfg_setup(currentsens2_cfg_t *cfg)
Current Sens 2 configuration object setup function.
err_t currentsens2_tare(currentsens2_t *ctx)
Current Sens 2 tare function.
err_t currentsens2_read_an_pin_value(currentsens2_t *ctx, uint16_t *data_out)
Current Sens 2 read AN pin value function.
err_t currentsens2_get_current(currentsens2_t *ctx, float *current)
Current Sens 2 read current function.
void currentsens2_set_prim_turn_no(currentsens2_t *ctx, uint8_t turns)
Current Sens 2 set number of primary coil turns function.
err_t currentsens2_read_an_pin_vol(currentsens2_t *ctx, float *data_out)
Current Sens 2 read AN pin voltage level function.
uint8_t currentsens2_get_int_pin(currentsens2_t *ctx)
Current Sens 2 get int pin state function.
err_t currentsens2_init(currentsens2_t *ctx, currentsens2_cfg_t *cfg)
Current Sens 2 initialization function.
Current Sens 2 Click configuration object.
Definition: currentsens2.h:118
analog_in_resolution_t resolution
Definition: currentsens2.h:122
float vref
Definition: currentsens2.h:123
pin_name_t int_pin
Definition: currentsens2.h:120
pin_name_t an
Definition: currentsens2.h:119
Current Sens 2 Click context object.
Definition: currentsens2.h:103
uint8_t no_of_turns
Definition: currentsens2.h:109
digital_in_t int_pin
Definition: currentsens2.h:104
analog_in_t adc
Definition: currentsens2.h:106
float zero_val
Definition: currentsens2.h:108