thermok 2.0.0.0
thermok.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 THERMOK_H
36#define THERMOK_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_i2c_master.h"
55
56
57// -------------------------------------------------------------- PUBLIC MACROS
67#define THERMOK_MAP_MIKROBUS( cfg, mikrobus ) \
68 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
69 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
70 cfg.al4 = MIKROBUS( mikrobus, MIKROBUS_AN ); \
71 cfg.al3 = MIKROBUS( mikrobus, MIKROBUS_RST ); \
72 cfg.al2 = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
73 cfg.al1 = MIKROBUS( mikrobus, MIKROBUS_INT );
80#define THERMOK_RETVAL uint8_t
81
82#define THERMOK_OK 0x00
83#define THERMOK_INIT_ERROR 0xFF
90#define THERMOK_DEVICE_SLAVE_ADDR_0 0x60
91#define THERMOK_DEVICE_SLAVE_ADDR_1 0x61
92#define THERMOK_DEVICE_SLAVE_ADDR_2 0x62
93#define THERMOK_DEVICE_SLAVE_ADDR_3 0x63
94#define THERMOK_DEVICE_SLAVE_ADDR_4 0x64
95#define THERMOK_DEVICE_SLAVE_ADDR_5 0x65
96#define THERMOK_DEVICE_SLAVE_ADDR_6 0x66
97#define THERMOK_DEVICE_SLAVE_ADDR_7 0x67
104#define THERMOK_REG_HOT_JUNCTION_TEMP_THR 0x00
105#define THERMOK_REG_JUNCTIONS_TEMP_DELTA_THR 0x01
106#define THERMOK_REG_COLD_JUNCTION_TEMP_THR 0x02
107#define THERMOK_REG_RAW_ADC_DATA 0x03
108#define THERMOK_REG_STATUS 0x04
109#define THERMOK_REG_SENSOR_CONFIG 0x05
110#define THERMOK_REG_DEVICE_CONFIG 0x06
111#define THERMOK_REG_ALERT1_CONFIG 0x08
112#define THERMOK_REG_ALERT2_CONFIG 0x09
113#define THERMOK_REG_ALERT3_CONFIG 0x0A
114#define THERMOK_REG_ALERT4_CONFIG 0x0B
115#define THERMOK_REG_ALERT1_HYSTERESIS 0x0C
116#define THERMOK_REG_ALERT2_HYSTERESIS 0x0D
117#define THERMOK_REG_ALERT3_HYSTERESIS 0x0E
118#define THERMOK_REG_ALERT4_HYSTERESIS 0x0F
119#define THERMOK_REG_ALERT1_LIMIT 0x10
120#define THERMOK_REG_ALERT2_LIMIT 0x11
121#define THERMOK_REG_ALERT3_LIMIT 0x12
122#define THERMOK_REG_ALERT4_LIMIT 0x13
123#define THERMOK_REG_DEVICE_ID 0x20
130#define THERMOK_SCFG_TYPE_K 0x00
131#define THERMOK_SCFG_TYPE_J 0x10
132#define THERMOK_SCFG_TYPE_T 0x20
133#define THERMOK_SCFG_TYPE_N 0x30
134#define THERMOK_SCFG_TYPE_S 0x40
135#define THERMOK_SCFG_TYPE_E 0x50
136#define THERMOK_SCFG_TYPE_B 0x60
137#define THERMOK_SCFG_TYPE_R 0x70
138#define THERMOK_SCFG_FILTER_COEFFICIENT_0 0x00
139#define THERMOK_SCFG_FILTER_COEFFICIENT_1 0x01
140#define THERMOK_SCFG_FILTER_COEFFICIENT_2 0x02
141#define THERMOK_SCFG_FILTER_COEFFICIENT_3 0x03
142#define THERMOK_SCFG_FILTER_COEFFICIENT_4 0x04
143#define THERMOK_SCFG_FILTER_COEFFICIENT_5 0x05
144#define THERMOK_SCFG_FILTER_COEFFICIENT_6 0x06
145#define THERMOK_SCFG_FILTER_COEFFICIENT_7 0x07
152#define THERMOK_DCFG_COLD_JUNCTION_RES_0p0625 0x00
153#define THERMOK_DCFG_COLD_JUNCTION_RES_0p25 0x80
154#define THERMOK_DCFG_ADC_RES_18bit 0x00
155#define THERMOK_DCFG_ADC_RES_16bit 0x20
156#define THERMOK_DCFG_ADC_RES_14bit 0x40
157#define THERMOK_DCFG_ADC_RES_12bit 0x60
158#define THERMOK_DCFG_NUM_TEMP_SAMPLES_1 0x00
159#define THERMOK_DCFG_NUM_TEMP_SAMPLES_2 0x04
160#define THERMOK_DCFG_NUM_TEMP_SAMPLES_4 0x08
161#define THERMOK_DCFG_NUM_TEMP_SAMPLES_8 0x0C
162#define THERMOK_DCFG_NUM_TEMP_SAMPLES_16 0x10
163#define THERMOK_DCFG_NUM_TEMP_SAMPLES_32 0x14
164#define THERMOK_DCFG_NUM_TEMP_SAMPLES_64 0x18
165#define THERMOK_DCFG_NUM_TEMP_SAMPLES_128 0x1C
166#define THERMOK_DCFG_MODE_NORMAL_OPERATION 0x00
167#define THERMOK_DCFG_MODE_SHUTDOWN 0x01
168#define THERMOK_DCFG_MODE_BURST 0x02
175#define THERMOK_ACFG_INTERRUPT_CLEAR_1 0x80
176#define THERMOK_ACFG_INTERRUPT_CLEAR_0 0x00
177#define THERMOK_ACFG_ALERT_MONITOR_TC 0x10
178#define THERMOK_ACFG_ALERT_MONITOR_TH 0x00
179#define THERMOK_ACFG_ALERT_LIMIT_RISING 0x08
180#define THERMOK_ACFG_ALERT_LIMIT_FALLING 0x00
181#define THERMOK_ACFG_ALERT_ACTIVE_HIGH 0x04
182#define THERMOK_ACFG_ALERT_ACTIVE_LOW 0x00
183#define THERMOK_ACFG_ALERT_MODE_INTERRUPT 0x02
184#define THERMOK_ACFG_ALERT_MODE_COMPARATOR 0x00
185#define THERMOK_ACFG_ALERT_OUT_ENABLED 0x01
186#define THERMOK_ACFG_ALERT_OUT_DISABLED 0x00
193#define THERMOK_AHYS_HYSTERESIS_128C 0x80
194#define THERMOK_AHYS_HYSTERESIS_64C 0x40
195#define THERMOK_AHYS_HYSTERESIS_32C 0x20
196#define THERMOK_AHYS_HYSTERESIS_16C 0x10
197#define THERMOK_AHYS_HYSTERESIS_8C 0x08
198#define THERMOK_AHYS_HYSTERESIS_4C 0x04
199#define THERMOK_AHYS_HYSTERESIS_2C 0x02
200#define THERMOK_AHYS_HYSTERESIS_1C 0x01
207#define THERMOK_ALIMIT_1024C 0x4000
208#define THERMOK_ALIMIT_512C 0x2000
209#define THERMOK_ALIMIT_255C 0x1000
210#define THERMOK_ALIMIT_128C 0x0800
211#define THERMOK_ALIMIT_64C 0x0400
212#define THERMOK_ALIMIT_32C 0x0200
213#define THERMOK_ALIMIT_16C 0x0100
214#define THERMOK_ALIMIT_8C 0x0080
215#define THERMOK_ALIMIT_4C 0x0040
216#define THERMOK_ALIMIT_2C 0x0020
217#define THERMOK_ALIMIT_1C 0x0010
218#define THERMOK_ALIMIT_0p5C 0x0008
219#define THERMOK_ALIMIT_0p25C 0x0004
220#define THERMOK_ALIMIT_SIGN_1 0x8000
221#define THERMOK_ALIMIT_SIGN_0 0x0000
228#define THERMOK_DEVICE_ID 0x40
229#define THERMOK_DEVICE_REV 0x10
230#define THERMOK_DEVICE_INFO 0x4010
237#define THERMOK_TEMP_IN_FAHRENHEIT 0x02
238#define THERMOK_TEMP_IN_KELVIN 0x01
239#define THERMOK_TEMP_IN_CELSIUS 0x00
242 // End group macro
243// --------------------------------------------------------------- PUBLIC TYPES
252typedef struct
253{
254 // Input pins
255
256 digital_in_t al4;
257 digital_in_t al3;
258 digital_in_t al2;
259 digital_in_t al1;
260
261 // Modules
262
263 i2c_master_t i2c;
264
265 // ctx variable
266
268
269} thermok_t;
270
274typedef struct
275{
276 // Communication gpio pins
277
278 pin_name_t scl;
279 pin_name_t sda;
280
281 // Additional gpio pins
282
283 pin_name_t al4;
284 pin_name_t al3;
285 pin_name_t al2;
286 pin_name_t al1;
287
288 // static variable
289
290 uint32_t i2c_speed;
291 uint8_t i2c_address;
292
294
298typedef struct
299{
300 uint8_t burst_cmp;
302 uint8_t over_volt;
303 uint8_t alert_4;
304 uint8_t alert_3;
305 uint8_t alert_2;
306 uint8_t alert_1;
307
309
310 // End types group
311// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
312
318#ifdef __cplusplus
319extern "C"{
320#endif
321
331
341
352void thermok_generic_write ( thermok_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
353
364void thermok_generic_read ( thermok_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
365
373
381
391float thermok_get_temperature ( thermok_t *ctx, uint8_t reg, uint8_t temp_format );
392
400void thermok_set_register_cfg ( thermok_t *ctx, uint8_t reg_cfg, uint8_t cfg_data );
401
409
417
425
433
434#ifdef __cplusplus
435}
436#endif
437#endif // _THERMOK_H_
438
439 // End public_function group
441
442// ------------------------------------------------------------------------- END
#define THERMOK_RETVAL
Definition thermok.h:80
float thermok_get_temperature(thermok_t *ctx, uint8_t reg, uint8_t temp_format)
Temperature data.
void thermok_cfg_setup(thermok_cfg_t *cfg)
Config Object Initialization function.
uint16_t thermok_get_device_info(thermok_t *ctx)
Functions for read device info.
uint8_t thermok_get_alert_state_2(thermok_t *ctx)
Alert 2 pin state.
void thermok_get_status(thermok_t *ctx, thermok_alert_t *status)
Get status.
void thermok_set_register_cfg(thermok_t *ctx, uint8_t reg_cfg, uint8_t cfg_data)
Set register config.
uint8_t thermok_get_alert_state_4(thermok_t *ctx)
Alert 4 pin state.
void thermok_generic_read(thermok_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
uint8_t thermok_get_alert_state_1(thermok_t *ctx)
Alert 1 pin state.
void thermok_generic_write(thermok_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
THERMOK_RETVAL thermok_init(thermok_t *ctx, thermok_cfg_t *cfg)
Initialization function.
uint8_t thermok_get_alert_state_3(thermok_t *ctx)
Alert 3 pin state.
Alert structure definition.
Definition thermok.h:299
uint8_t over_volt
Definition thermok.h:302
uint8_t alert_1
Definition thermok.h:306
uint8_t alert_3
Definition thermok.h:304
uint8_t burst_cmp
Definition thermok.h:300
uint8_t temp_h_update
Definition thermok.h:301
uint8_t alert_2
Definition thermok.h:305
uint8_t alert_4
Definition thermok.h:303
Click configuration structure definition.
Definition thermok.h:275
uint32_t i2c_speed
Definition thermok.h:290
pin_name_t al3
Definition thermok.h:284
pin_name_t al2
Definition thermok.h:285
pin_name_t al1
Definition thermok.h:286
pin_name_t al4
Definition thermok.h:283
pin_name_t scl
Definition thermok.h:278
pin_name_t sda
Definition thermok.h:279
uint8_t i2c_address
Definition thermok.h:291
Click ctx object definition.
Definition thermok.h:253
digital_in_t al3
Definition thermok.h:257
digital_in_t al2
Definition thermok.h:258
i2c_master_t i2c
Definition thermok.h:263
digital_in_t al4
Definition thermok.h:256
uint8_t slave_address
Definition thermok.h:267
digital_in_t al1
Definition thermok.h:259