canisolator2 2.0.0.0
canisolator2.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 CANISOLATOR2_H
29#define CANISOLATOR2_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 // canisolator2_set
77
92#define CANISOLATOR2_MAP_MIKROBUS( cfg, mikrobus ) \
93 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
94 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX );
95
96 // canisolator2_map
97 // canisolator2
98
103typedef struct
104{
105 // Modules
106
107 uart_t uart;
109 // Buffers
110
111 char uart_rx_buffer[ DRV_BUFFER_SIZE ];
112 char uart_tx_buffer[ DRV_BUFFER_SIZE ];
115
120typedef struct
121{
122 // Communication gpio pins
123
124 pin_name_t rx_pin;
125 pin_name_t tx_pin;
127 // Static variable
128
129 uint32_t baud_rate;
131 uart_data_bits_t data_bit;
132 uart_parity_t parity_bit;
133 uart_stop_bits_t stop_bit;
136
147
164
180
194err_t canisolator2_generic_write ( canisolator2_t *ctx, char *data_buf, uint16_t len );
195
209err_t canisolator2_generic_read ( canisolator2_t *ctx, char *data_buf, uint16_t max_len );
210
223err_t canisolator2_send_data ( canisolator2_t *ctx, char *tx_data );
224
225#ifdef __cplusplus
226}
227#endif
228#endif // CANISOLATOR2_H
229
230 // canisolator2
231
232// ------------------------------------------------------------------------ END
canisolator2_return_value_t
CAN Isolator 2 Click return value data.
Definition canisolator2.h:142
@ CANISOLATOR2_ERROR
Definition canisolator2.h:144
@ CANISOLATOR2_OK
Definition canisolator2.h:143
#define DRV_BUFFER_SIZE
CAN Isolator 2 driver buffer size.
Definition canisolator2.h:74
err_t canisolator2_generic_write(canisolator2_t *ctx, char *data_buf, uint16_t len)
CAN Isolator 2 data writing function.
err_t canisolator2_send_data(canisolator2_t *ctx, char *tx_data)
CAN Isolator 2 send data function.
err_t canisolator2_init(canisolator2_t *ctx, canisolator2_cfg_t *cfg)
CAN Isolator 2 initialization function.
err_t canisolator2_generic_read(canisolator2_t *ctx, char *data_buf, uint16_t max_len)
CAN Isolator 2 data reading function.
void canisolator2_cfg_setup(canisolator2_cfg_t *cfg)
CAN Isolator 2 configuration object setup function.
CAN Isolator 2 Click configuration object.
Definition canisolator2.h:121
uint32_t baud_rate
Definition canisolator2.h:129
bool uart_blocking
Definition canisolator2.h:130
uart_data_bits_t data_bit
Definition canisolator2.h:131
pin_name_t tx_pin
Definition canisolator2.h:125
pin_name_t rx_pin
Definition canisolator2.h:124
uart_stop_bits_t stop_bit
Definition canisolator2.h:133
uart_parity_t parity_bit
Definition canisolator2.h:132
CAN Isolator 2 Click context object.
Definition canisolator2.h:104
uart_t uart
Definition canisolator2.h:107