co 2.0.0.0
co.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 CO_H
29#define CO_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_in.h"
50#include "drv_analog_in.h"
51
72#define CO_MAP_MIKROBUS( cfg, mikrobus ) \
73 cfg.an = MIKROBUS( mikrobus, MIKROBUS_AN )
74
75 // co_map
76 // co
77
82typedef struct
83{
84 analog_in_t adc;
86} co_t;
87
92typedef struct
93{
94 pin_name_t an;
96 // static variable
97
98 analog_in_resolution_t resolution;
99 float vref;
101} co_cfg_t;
102
107typedef enum
108{
109 CO_OK = 0,
110 CO_ERROR = -1
111
113
129void co_cfg_setup ( co_cfg_t *cfg );
130
145err_t co_init ( co_t *ctx, co_cfg_t *cfg );
146
159err_t co_read_an_pin_value ( co_t *ctx, uint16_t *data_out );
160
175err_t co_read_an_pin_voltage ( co_t *ctx, float *data_out );
176
177#ifdef __cplusplus
178}
179#endif
180#endif // CO_H
181
182 // co
183
184// ------------------------------------------------------------------------ END
co_return_value_t
CO Click return value data.
Definition co.h:108
@ CO_ERROR
Definition co.h:110
@ CO_OK
Definition co.h:109
err_t co_read_an_pin_value(co_t *ctx, uint16_t *data_out)
CO read AN pin value function.
void co_cfg_setup(co_cfg_t *cfg)
CO configuration object setup function.
err_t co_init(co_t *ctx, co_cfg_t *cfg)
CO initialization function.
err_t co_read_an_pin_voltage(co_t *ctx, float *data_out)
CO read AN pin voltage level function.
CO Click configuration object.
Definition co.h:93
analog_in_resolution_t resolution
Definition co.h:98
float vref
Definition co.h:99
pin_name_t an
Definition co.h:94
CO Click context object.
Definition co.h:83
analog_in_t adc
Definition co.h:84