altitude5  2.0.0.0
altitude5.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 ALTITUDE5_H
29 #define ALTITUDE5_H
30 
31 #ifdef __cplusplus
32 extern "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_i2c_master.h"
50 #include "drv_analog_in.h"
51 
78 #define ALTITUDE5_SET_DEV_ADDR 0x4D
79  // altitude5_set
81 
96 #define ALTITUDE5_MAP_MIKROBUS( cfg, mikrobus ) \
97  cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
98  cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
99  cfg.an = MIKROBUS( mikrobus, MIKROBUS_AN )
100  // altitude5_map // altitude5
103 
104 typedef enum
105 {
110 
111 typedef err_t ( *altitude5_master_io_t )( struct altitude5_s*, uint16_t* );
112 
117 typedef struct altitude5_s
118 {
119  analog_in_t adc;
121  // Modules
122  i2c_master_t i2c;
124  // I2C slave address
125  uint8_t slave_address;
131  int16_t offset;
133  float temperature;
136 
141 typedef struct
142 {
143  pin_name_t an;
145  analog_in_resolution_t resolution;
146  float vref;
148  pin_name_t scl;
149  pin_name_t sda;
151  uint32_t i2c_speed;
152  uint8_t i2c_address;
155 
156  int16_t adc_offset;
161 
162 
167 typedef enum
168 {
170  ALTITUDE5_ERROR = -1
171 
173 
190 
206 
221 
236 err_t altitude5_get_adc ( altitude5_t *ctx, uint16_t *data_out );
237 
251 err_t altitude5_read_an_pin_voltage ( altitude5_t *ctx, float *data_out );
252 
267 err_t altitude5_get_adc_voltage ( altitude5_t *ctx, float *adc_vtg );
268 
283 err_t altitude5_get_pressure ( altitude5_t *ctx, float *pressure );
284 
299 err_t altitude5_get_altitude ( altitude5_t *ctx, float *altitude );
300 
301 #ifdef __cplusplus
302 }
303 #endif
304 #endif // ALTITUDE5_H
305  // altitude5
307 
308 // ------------------------------------------------------------------------ END
altitude5_s::sea_lvl_pressure
float sea_lvl_pressure
Definition: altitude5.h:132
altitude5_cfg_t::scl
pin_name_t scl
Definition: altitude5.h:148
altitude5_cfg_t::sea_level_pressure
float sea_level_pressure
Definition: altitude5.h:157
altitude5_default_cfg
err_t altitude5_default_cfg(altitude5_t *ctx)
Altitude 5 default configuration function.
altitude5_drv_t
altitude5_drv_t
Definition: altitude5.h:105
altitude5_s::offset
int16_t offset
Definition: altitude5.h:131
altitude5_cfg_t::i2c_speed
uint32_t i2c_speed
Definition: altitude5.h:151
altitude5_cfg_t::drv_sel
altitude5_drv_t drv_sel
Definition: altitude5.h:154
altitude5_return_value_t
altitude5_return_value_t
Altitude 5 Click return value data.
Definition: altitude5.h:168
altitude5_get_altitude
err_t altitude5_get_altitude(altitude5_t *ctx, float *altitude)
Altitude 5 get altitude function.
altitude5_t
struct altitude5_s altitude5_t
Altitude 5 Click context object.
altitude5_master_io_t
err_t(* altitude5_master_io_t)(struct altitude5_s *, uint16_t *)
Definition: altitude5.h:111
ALTITUDE5_OK
@ ALTITUDE5_OK
Definition: altitude5.h:169
altitude5_s::drv_sel
altitude5_drv_t drv_sel
Definition: altitude5.h:127
altitude5_cfg_t::sda
pin_name_t sda
Definition: altitude5.h:149
altitude5_get_pressure
err_t altitude5_get_pressure(altitude5_t *ctx, float *pressure)
Altitude 5 get pressure function.
altitude5_cfg_t
Altitude 5 Click configuration object.
Definition: altitude5.h:142
altitude5_read_an_pin_voltage
err_t altitude5_read_an_pin_voltage(altitude5_t *ctx, float *data_out)
Altitude 5 read AN pin voltage level function.
altitude5_cfg_t::an
pin_name_t an
Definition: altitude5.h:143
ALTITUDE5_ERROR
@ ALTITUDE5_ERROR
Definition: altitude5.h:170
altitude5_cfg_t::adc_offset
int16_t adc_offset
Definition: altitude5.h:156
altitude5_get_adc
err_t altitude5_get_adc(altitude5_t *ctx, uint16_t *data_out)
Altitude 5 get ADC function.
altitude5_s::slave_address
uint8_t slave_address
Definition: altitude5.h:125
altitude5_cfg_t::vref
float vref
Definition: altitude5.h:146
altitude5_init
err_t altitude5_init(altitude5_t *ctx, altitude5_cfg_t *cfg)
Altitude 5 initialization function.
altitude5_cfg_t::resolution
analog_in_resolution_t resolution
Definition: altitude5.h:145
altitude5_s
Altitude 5 Click context object.
Definition: altitude5.h:118
altitude5_cfg_t::i2c_address
uint8_t i2c_address
Definition: altitude5.h:152
altitude5_s::adc
analog_in_t adc
Definition: altitude5.h:119
altitude5_cfg_t::temperature_degree_celsius
float temperature_degree_celsius
Definition: altitude5.h:158
ALTITUDE5_DRV_SEL_I2C
@ ALTITUDE5_DRV_SEL_I2C
Definition: altitude5.h:107
altitude5_cfg_setup
void altitude5_cfg_setup(altitude5_cfg_t *cfg)
Altitude 5 configuration object setup function.
altitude5_s::read_adc_f
altitude5_master_io_t read_adc_f
Definition: altitude5.h:129
altitude5_get_adc_voltage
err_t altitude5_get_adc_voltage(altitude5_t *ctx, float *adc_vtg)
Altitude 5 get ADC voltage function.
altitude5_s::i2c
i2c_master_t i2c
Definition: altitude5.h:122
ALTITUDE5_DRV_SEL_AN
@ ALTITUDE5_DRV_SEL_AN
Definition: altitude5.h:106
altitude5_s::temperature
float temperature
Definition: altitude5.h:133