canfd4 2.0.0.0
canfd4.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 CANFD4_H
36#define CANFD4_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 CANFD4_MAP_MIKROBUS( cfg, mikrobus ) \
68 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
69 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX ); \
70 cfg.cs = MIKROBUS( mikrobus, MIKROBUS_CS )
77#define CANFD4_RETVAL uint8_t
78
79#define CANFD4_OK 0x00
80#define CANFD4_INIT_ERROR 0xFF
87#define CANFD4_NORMAL_MODE 0
88#define CANFD4_STANDBY_MODE 1
95#define DRV_RX_BUFFER_SIZE 500
98 // End group macro
99// --------------------------------------------------------------- PUBLIC TYPES
107typedef struct
108{
109 // Output pins
110
111 digital_out_t cs;
112
113 // Modules
114
115 uart_t uart;
116
117 char uart_rx_buffer[ DRV_RX_BUFFER_SIZE ];
118 char uart_tx_buffer[ DRV_RX_BUFFER_SIZE ];
119
120} canfd4_t;
121
125typedef struct
126{
127 // Communication gpio pins
128
129 pin_name_t rx_pin;
130 pin_name_t tx_pin;
131
132 // Additional gpio pins
133
134 pin_name_t cs;
135
136 // static variable
137
138 uint32_t baud_rate; // Clock speed.
140 uart_data_bits_t data_bit; // Data bits.
141 uart_parity_t parity_bit; // Parity bit.
142 uart_stop_bits_t stop_bit; // Stop bits.
143
145
149typedef uint8_t canfd4_error_t;
150
151 // End types group
152// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
153
159#ifdef __cplusplus
160extern "C"{
161#endif
162
172
181
188void canfd4_generic_write ( canfd4_t *ctx, char *data_buf, uint16_t len );
189
197int32_t canfd4_generic_read ( canfd4_t *ctx, char *data_buf, uint16_t max_len );
198
204void canfd4_set_dev_mode ( canfd4_t *ctx, uint8_t mode );
205
206
207#ifdef __cplusplus
208}
209#endif
210#endif // _CANFD4_H_
211
212 // End public_function group
214
215// ------------------------------------------------------------------------- END
#define DRV_RX_BUFFER_SIZE
Definition canfd4.h:95
#define CANFD4_RETVAL
Definition canfd4.h:77
void canfd4_set_dev_mode(canfd4_t *ctx, uint8_t mode)
Set mode function.
void canfd4_generic_write(canfd4_t *ctx, char *data_buf, uint16_t len)
Generic write function.
int32_t canfd4_generic_read(canfd4_t *ctx, char *data_buf, uint16_t max_len)
Generic read function.
CANFD4_RETVAL canfd4_init(canfd4_t *ctx, canfd4_cfg_t *cfg)
Initialization function.
void canfd4_cfg_setup(canfd4_cfg_t *cfg)
Config Object Initialization function.
uint8_t canfd4_error_t
Error type.
Definition canfd4.h:149
Click configuration structure definition.
Definition canfd4.h:126
uint32_t baud_rate
Definition canfd4.h:138
bool uart_blocking
Definition canfd4.h:139
uart_data_bits_t data_bit
Definition canfd4.h:140
pin_name_t tx_pin
Definition canfd4.h:130
pin_name_t rx_pin
Definition canfd4.h:129
uart_stop_bits_t stop_bit
Definition canfd4.h:142
uart_parity_t parity_bit
Definition canfd4.h:141
pin_name_t cs
Definition canfd4.h:134
Click ctx object definition.
Definition canfd4.h:108
digital_out_t cs
Definition canfd4.h:111
uart_t uart
Definition canfd4.h:115