usbuart3 2.0.0.0
usbuart3.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 USBUART3_H
36#define USBUART3_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// -------------------------------------------------------------- PUBLIC MACROS
66#define USBUART3_MAP_MIKROBUS( cfg, mikrobus ) \
67 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
68 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX ); \
69 cfg.sus = MIKROBUS( mikrobus, MIKROBUS_AN ); \
70 cfg.rst = MIKROBUS( mikrobus, MIKROBUS_RST ); \
71 cfg.cts = MIKROBUS( mikrobus, MIKROBUS_CS ); \
72 cfg.wup = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
73 cfg.rts = MIKROBUS( mikrobus, MIKROBUS_INT )
80#define USBUART3_RETVAL uint8_t
81
82#define USBUART3_OK 0x00
83#define USBUART3_INIT_ERROR 0xFF
90#define DRV_RX_BUFFER_SIZE 500
93 // End group macro
94// --------------------------------------------------------------- PUBLIC TYPES
102typedef struct
103{
104 // Output pins
105
106 digital_out_t rst;
107 digital_out_t cts;
108 digital_out_t wup;
109
110 // Input pins
111
112 digital_in_t sus;
113 digital_in_t rts;
114
115 // Modules
116
117 uart_t uart;
118
119 char uart_rx_buffer[ DRV_RX_BUFFER_SIZE ];
120 char uart_tx_buffer[ DRV_RX_BUFFER_SIZE ];
121
122} usbuart3_t;
123
127typedef struct
128{
129 // Communication gpio pins
130
131 pin_name_t rx_pin;
132 pin_name_t tx_pin;
133
134 // Additional gpio pins
135
136 pin_name_t sus;
137 pin_name_t rst;
138 pin_name_t cts;
139 pin_name_t wup;
140 pin_name_t rts;
141
142 // static variable
143
144 uint32_t baud_rate; // Clock speed.
146 uart_data_bits_t data_bit; // Data bits.
147 uart_parity_t parity_bit; // Parity bit.
148 uart_stop_bits_t stop_bit; // Stop bits.
149
151
155typedef uint8_t usbuart3_error_t;
156
157 // End types group
158// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
159
165#ifdef __cplusplus
166extern "C"{
167#endif
168
178
187
194void usbuart3_generic_write ( usbuart3_t *ctx, char *data_buf, uint16_t len );
195
203int32_t usbuart3_generic_read ( usbuart3_t *ctx, char *data_buf, uint16_t max_len );
204
213
222
223
224#ifdef __cplusplus
225}
226#endif
227#endif // _USBUART3_H_
228
229 // End public_function group
231
232// ------------------------------------------------------------------------- END
#define DRV_RX_BUFFER_SIZE
Definition usbuart3.h:90
#define USBUART3_RETVAL
Definition usbuart3.h:80
USBUART3_RETVAL usbuart3_init(usbuart3_t *ctx, usbuart3_cfg_t *cfg)
Initialization function.
int32_t usbuart3_generic_read(usbuart3_t *ctx, char *data_buf, uint16_t max_len)
Generic read function.
void usbuart3_generic_write(usbuart3_t *ctx, char *data_buf, uint16_t len)
Generic write function.
uint8_t usbuart3_get_sus(usbuart3_t *ctx)
Get USB suspend pin.
void usbuart3_cfg_setup(usbuart3_cfg_t *cfg)
Config Object Initialization function.
void usbuart3_reset(usbuart3_t *ctx)
Function for reset.
uint8_t usbuart3_error_t
Error type.
Definition usbuart3.h:155
Click configuration structure definition.
Definition usbuart3.h:128
pin_name_t rts
Definition usbuart3.h:140
uint32_t baud_rate
Definition usbuart3.h:144
pin_name_t wup
Definition usbuart3.h:139
pin_name_t cts
Definition usbuart3.h:138
bool uart_blocking
Definition usbuart3.h:145
uart_data_bits_t data_bit
Definition usbuart3.h:146
pin_name_t sus
Definition usbuart3.h:136
pin_name_t tx_pin
Definition usbuart3.h:132
pin_name_t rx_pin
Definition usbuart3.h:131
uart_stop_bits_t stop_bit
Definition usbuart3.h:148
uart_parity_t parity_bit
Definition usbuart3.h:147
pin_name_t rst
Definition usbuart3.h:137
Click ctx object definition.
Definition usbuart3.h:103
uart_t uart
Definition usbuart3.h:117
digital_in_t rts
Definition usbuart3.h:113
digital_out_t wup
Definition usbuart3.h:108
digital_out_t rst
Definition usbuart3.h:106
digital_out_t cts
Definition usbuart3.h:107
digital_in_t sus
Definition usbuart3.h:112