thermo  2.0.0.0
thermo.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 THERMO_H
36 #define THERMO_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_spi_master.h"
55 
56 
57 // -------------------------------------------------------------- PUBLIC MACROS
68 #define THERMO_MAP_MIKROBUS( cfg, mikrobus ) \
69  cfg.miso = MIKROBUS( mikrobus, MIKROBUS_MISO ); \
70  cfg.mosi = MIKROBUS( mikrobus, MIKROBUS_MOSI ); \
71  cfg.sck = MIKROBUS( mikrobus, MIKROBUS_SCK ); \
72  cfg.cs = MIKROBUS( mikrobus, MIKROBUS_CS )
73 
79 #define THERMO_RETVAL uint8_t
80 
81 #define THERMO_OK 0x00
82 #define THERMO_INIT_ERROR 0xFF
83  // End group macro
86 // --------------------------------------------------------------- PUBLIC TYPES
95 typedef struct
96 {
97  digital_out_t cs;
98 
99  // Modules
100 
101  spi_master_t spi;
102  pin_name_t chip_select;
103 
104 } thermo_t;
105 
109 typedef struct
110 {
111  // Communication gpio pins
112 
113  pin_name_t miso;
114  pin_name_t mosi;
115  pin_name_t sck;
116  pin_name_t cs;
117 
118  // static variable
119 
120  uint32_t spi_speed;
121  spi_master_mode_t spi_mode;
122  spi_master_chip_select_polarity_t cs_polarity;
123 
124 } thermo_cfg_t;
125  // End types group
127 // ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
128 
133 #ifdef __cplusplus
134 extern "C"{
135 #endif
136 
146 
155 
166 uint32_t thermo_read_data ( thermo_t* ctx );
167 
179 
191 
203 uint8_t thermo_check_fault ( thermo_t* ctx );
204 
218 
232 
246 
247 #ifdef __cplusplus
248 }
249 #endif
250 #endif // _THERMO_H_
251  // End public_function group
254 
255 // ------------------------------------------------------------------------- END
thermo_cfg_setup
void thermo_cfg_setup(thermo_cfg_t *cfg)
Config Object Initialization function.
thermo_t
Click ctx object definition.
Definition: thermo.h:96
thermo_cfg_t
Click configuration structure definition.
Definition: thermo.h:110
thermo_cfg_t::mosi
pin_name_t mosi
Definition: thermo.h:114
thermo_cfg_t::cs
pin_name_t cs
Definition: thermo.h:116
thermo_cfg_t::cs_polarity
spi_master_chip_select_polarity_t cs_polarity
Definition: thermo.h:122
thermo_cfg_t::spi_speed
uint32_t spi_speed
Definition: thermo.h:120
thermo_cfg_t::miso
pin_name_t miso
Definition: thermo.h:113
thermo_t::chip_select
pin_name_t chip_select
Definition: thermo.h:102
thermo_read_data
uint32_t thermo_read_data(thermo_t *ctx)
Read data from sensor function.
thermo_check_fault
uint8_t thermo_check_fault(thermo_t *ctx)
Check fault states function.
thermo_t::cs
digital_out_t cs
Definition: thermo.h:97
thermo_t::spi
spi_master_t spi
Definition: thermo.h:101
thermo_init
THERMO_RETVAL thermo_init(thermo_t *ctx, thermo_cfg_t *cfg)
Initialization function.
thermo_short_circuited_gnd
uint8_t thermo_short_circuited_gnd(thermo_t *ctx)
Check short-circuited to GND function.
thermo_short_circuited_vcc
uint8_t thermo_short_circuited_vcc(thermo_t *ctx)
Check short-circuited to Vcc function.
thermo_cfg_t::sck
pin_name_t sck
Definition: thermo.h:115
thermo_check_connections
uint8_t thermo_check_connections(thermo_t *ctx)
Check connections fault function.
THERMO_RETVAL
#define THERMO_RETVAL
Definition: thermo.h:79
thermo_get_temperature
float thermo_get_temperature(thermo_t *ctx)
Get thermocouple temperature function.
thermo_get_junction_temperature
float thermo_get_junction_temperature(thermo_t *ctx)
Get reference junction temperature function.
thermo_cfg_t::spi_mode
spi_master_mode_t spi_mode
Definition: thermo.h:121