From 0597b499ccd225cc8da3a943727591f4866510ff Mon Sep 17 00:00:00 2001 From: Ludwig Simonsson <93864945+LudwigSimonsson@users.noreply.github.com> Date: Tue, 18 Apr 2023 06:55:13 +0200 Subject: [PATCH] Create UART.h --- UART.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 UART.h diff --git a/UART.h b/UART.h new file mode 100644 index 0000000..94a6207 --- /dev/null +++ b/UART.h @@ -0,0 +1,12 @@ +ifndef __UART_H +#define __UART_H + + +#include "stm32f4xx.h" +#include + +void USART2_Init(void); +void test_setup(void); + + +#endif