heartrate9 2.0.0.0
heartrate9.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 HEARTRATE9_H
29#define HEARTRATE9_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_out.h"
50#include "drv_digital_in.h"
51#include "drv_uart.h"
52
74#define DRV_BUFFER_SIZE 200
75
76 // heartrate9_set
77
92#define HEARTRATE9_MAP_MIKROBUS( cfg, mikrobus ) \
93 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
94 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX ); \
95 cfg.rst = MIKROBUS( mikrobus, MIKROBUS_RST ); \
96
97 // heartrate9_map
98 // heartrate9
99
104typedef struct
105{
106 // Output pins
107 digital_out_t rst;
109 // Modules
110 uart_t uart;
112 // Buffers
113 char uart_rx_buffer[ DRV_BUFFER_SIZE ];
114 char uart_tx_buffer[ DRV_BUFFER_SIZE ];
117
122typedef struct
123{
124 // Communication gpio pins
125 pin_name_t rx_pin;
126 pin_name_t tx_pin;
128 // Additional gpio pins
129 pin_name_t rst;
131 // Static variable
132 uint32_t baud_rate;
134 uart_data_bits_t data_bit;
135 uart_parity_t parity_bit;
136 uart_stop_bits_t stop_bit;
139
140
157
173
187err_t heartrate9_generic_write ( heartrate9_t *ctx, char *data_buf, uint16_t len );
188
202err_t heartrate9_generic_read ( heartrate9_t *ctx, char *data_buf, uint16_t max_len );
203
214void heartrate9_set_rst ( heartrate9_t *ctx, uint8_t state );
215
216#ifdef __cplusplus
217}
218#endif
219#endif // HEARTRATE9_H
220
221 // heartrate9
222
223// ------------------------------------------------------------------------ END
#define DRV_BUFFER_SIZE
Heart Rate 9 driver buffer size.
Definition heartrate9.h:74
void heartrate9_set_rst(heartrate9_t *ctx, uint8_t state)
Sets state of the rst pin setting.
void heartrate9_cfg_setup(heartrate9_cfg_t *cfg)
Heart Rate 9 configuration object setup function.
err_t heartrate9_generic_write(heartrate9_t *ctx, char *data_buf, uint16_t len)
Heart Rate 9 data writing function.
err_t heartrate9_init(heartrate9_t *ctx, heartrate9_cfg_t *cfg)
Heart Rate 9 initialization function.
err_t heartrate9_generic_read(heartrate9_t *ctx, char *data_buf, uint16_t max_len)
Heart Rate 9 data reading function.
Heart Rate 9 Click configuration object.
Definition heartrate9.h:123
uint32_t baud_rate
Definition heartrate9.h:132
bool uart_blocking
Definition heartrate9.h:133
uart_data_bits_t data_bit
Definition heartrate9.h:134
pin_name_t tx_pin
Definition heartrate9.h:126
pin_name_t rx_pin
Definition heartrate9.h:125
uart_stop_bits_t stop_bit
Definition heartrate9.h:136
uart_parity_t parity_bit
Definition heartrate9.h:135
pin_name_t rst
Definition heartrate9.h:129
Heart Rate 9 Click context object.
Definition heartrate9.h:105
uart_t uart
Definition heartrate9.h:110
digital_out_t rst
Definition heartrate9.h:107