summaryrefslogtreecommitdiff
path: root/project/Core/Inc/UART.h
diff options
context:
space:
mode:
Diffstat (limited to 'project/Core/Inc/UART.h')
-rw-r--r--project/Core/Inc/UART.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/project/Core/Inc/UART.h b/project/Core/Inc/UART.h
deleted file mode 100644
index e9c0f33..0000000
--- a/project/Core/Inc/UART.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef __NUCLEO476_UART_H
-#define __NUCLEO476_UART_H
-
-#include "stm32l476xx.h"
-
-#define BUFFER_SIZE (32)
-
-void UART2_Init(void);
-void UART2_GPIO_Init(void);
-void USART1_IRQHandler(void);
-void USART2_IRQHandler(void);
-void USART_Init(USART_TypeDef * USARTx);
-void USART_Write(USART_TypeDef * USARTx, uint8_t *buffer, uint32_t nBytes);
-uint8_t USART_Read(USART_TypeDef * USARTx);
-void USART_Delay(uint32_t us);
-void USART_IRQHandler(USART_TypeDef * USARTx, uint8_t *buffer, uint32_t * pRx_counter);
-
-#endif /* __NUCLEO476_UART_H */