mbusmaster 2.0.0.0
mbusmaster.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 MBUSMASTER_H
36#define MBUSMASTER_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_uart.h"
55
56
57// -------------------------------------------------------------- PUBLIC MACROS
67#define MBUSMASTER_MAP_MIKROBUS( cfg, mikrobus ) \
68 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
69 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX )
76#define MBUSMASTER_RETVAL uint8_t
77
78#define MBUSMASTER_OK 0x00
79#define MBUSMASTER_INIT_ERROR 0xFF
86#define DRV_RX_BUFFER_SIZE 500
89 // End group macro
90// --------------------------------------------------------------- PUBLIC TYPES
100typedef struct
101{
102 //digital_in_t int_pin;
103
104 // Modules
105
106 uart_t uart;
107
108 char uart_rx_buffer[ DRV_RX_BUFFER_SIZE ];
109 char uart_tx_buffer[ DRV_RX_BUFFER_SIZE ];
110
112
116typedef struct
117{
118 // Communication gpio pins
119
120 pin_name_t rx_pin;
121 pin_name_t tx_pin;
122
123 // static variable
124
125 uint32_t baud_rate; // Clock speed.
127 uart_data_bits_t data_bit; // Data bits.
128 uart_parity_t parity_bit; // Parity bit.
129 uart_stop_bits_t stop_bit; // Stop bits.
130
132
133 // End types group
134// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
135
141#ifdef __cplusplus
142extern "C"{
143#endif
144
154
163
170void mbusmaster_generic_write ( mbusmaster_t *ctx, char *data_buf, uint16_t len );
171
179int32_t mbusmaster_generic_read ( mbusmaster_t *ctx, char *data_buf, uint16_t max_len );
180
181#ifdef __cplusplus
182}
183#endif
184#endif // _MBUSMASTER_H_
185
186 // End public_function group
188
189// ------------------------------------------------------------------------- END
#define DRV_RX_BUFFER_SIZE
Definition mbusmaster.h:86
#define MBUSMASTER_RETVAL
Definition mbusmaster.h:76
void mbusmaster_generic_write(mbusmaster_t *ctx, char *data_buf, uint16_t len)
Generic write function.
MBUSMASTER_RETVAL mbusmaster_init(mbusmaster_t *ctx, mbusmaster_cfg_t *cfg)
Initialization function.
int32_t mbusmaster_generic_read(mbusmaster_t *ctx, char *data_buf, uint16_t max_len)
Generic read function.
void mbusmaster_cfg_setup(mbusmaster_cfg_t *cfg)
Config Object Initialization function.
Click configuration structure definition.
Definition mbusmaster.h:117
uint32_t baud_rate
Definition mbusmaster.h:125
bool uart_blocking
Definition mbusmaster.h:126
uart_data_bits_t data_bit
Definition mbusmaster.h:127
pin_name_t tx_pin
Definition mbusmaster.h:121
pin_name_t rx_pin
Definition mbusmaster.h:120
uart_stop_bits_t stop_bit
Definition mbusmaster.h:129
uart_parity_t parity_bit
Definition mbusmaster.h:128
Click ctx object definition.
Definition mbusmaster.h:101
uart_t uart
Definition mbusmaster.h:106