diff options
Diffstat (limited to 'drivers/chibios/uart.h')
-rw-r--r-- | drivers/chibios/uart.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/drivers/chibios/uart.h b/drivers/chibios/uart.h new file mode 100644 index 000000000..b4e20e9fd --- /dev/null +++ b/drivers/chibios/uart.h | |||
@@ -0,0 +1,77 @@ | |||
1 | /* Copyright 2021 | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 3 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include <stdint.h> | ||
20 | |||
21 | #include <hal.h> | ||
22 | |||
23 | #ifndef SERIAL_DRIVER | ||
24 | # define SERIAL_DRIVER SD1 | ||
25 | #endif | ||
26 | |||
27 | #ifndef SD1_TX_PIN | ||
28 | # define SD1_TX_PIN A9 | ||
29 | #endif | ||
30 | |||
31 | #ifndef SD1_TX_PAL_MODE | ||
32 | # define SD1_TX_PAL_MODE 7 | ||
33 | #endif | ||
34 | |||
35 | #ifndef SD1_RX_PIN | ||
36 | # define SD1_RX_PIN A10 | ||
37 | #endif | ||
38 | |||
39 | #ifndef SD1_RX_PAL_MODE | ||
40 | # define SD1_RX_PAL_MODE 7 | ||
41 | #endif | ||
42 | |||
43 | #ifndef SD1_CTS_PIN | ||
44 | # define SD1_CTS_PIN A11 | ||
45 | #endif | ||
46 | |||
47 | #ifndef SD1_CTS_PAL_MODE | ||
48 | # define SD1_CTS_PAL_MODE 7 | ||
49 | #endif | ||
50 | |||
51 | #ifndef SD1_RTS_PIN | ||
52 | # define SD1_RTS_PIN A12 | ||
53 | #endif | ||
54 | |||
55 | #ifndef SD1_RTS_PAL_MODE | ||
56 | # define SD1_RTS_PAL_MODE 7 | ||
57 | #endif | ||
58 | |||
59 | #ifndef SD1_CR1 | ||
60 | # define SD1_CR1 0 | ||
61 | #endif | ||
62 | |||
63 | #ifndef SD1_CR2 | ||
64 | # define SD1_CR2 0 | ||
65 | #endif | ||
66 | |||
67 | #ifndef SD1_CR3 | ||
68 | # define SD1_CR3 0 | ||
69 | #endif | ||
70 | |||
71 | void uart_init(uint32_t baud); | ||
72 | |||
73 | void uart_putchar(uint8_t c); | ||
74 | |||
75 | uint8_t uart_getchar(void); | ||
76 | |||
77 | bool uart_available(void); | ||