blob: cac971b77273e7302e67435b42e90779d9c693e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef USART_H
#define USART_H
#include <string.h>
#include <libopencm3/stm32/rcc.h>
#include <libopencm3/stm32/gpio.h>
#include <libopencm3/stm32/usart.h>
#include <libopencm3/cm3/nvic.h>
#include "fifo.h"
#define USART_BUFFER_SIZE 30
typedef struct USART{
FIFO rx_fifo;
FIFO tx_fifo;
} USART;
// init functions
void usart_init(USART *usart);
void usart_deinit(USART *usart);
// write functions
uint16_t usart_write_bytes(USART *usart, uint8_t *data_source, uint16_t data_length);
uint16_t usart_write(USART *usart, char *str);
//uint16_t usart_writeln(USART *usart, char *str);
// read functions
uint16_t usart_read_bytes(USART *usart, uint8_t *data_sink, uint16_t data_length);
//uint16_t usart_read(USART *usart, char *data_sink, uint16_t data_length);
//uint16_t usart_readln(USART *usart, char *data_sink);
#endif /* USART_H */
|