Uart working

This commit is contained in:
2024-09-15 19:29:07 +03:00
parent 419c55d807
commit cad6b45c5d
21 changed files with 1187 additions and 697 deletions

20
Core/Inc/UART3_Handler.h Normal file
View File

@ -0,0 +1,20 @@
/*
* UART3_Handler.h
*
* Created on: Sep 12, 2024
* Author: DashyFox
*/
#ifndef INC_UART3_HANDLER_H_
#define INC_UART3_HANDLER_H_
#include "stm32f1xx_hal.h"
#define UART_BUFFER_SIZE 256
extern uint8_t uart_rx_buffer[UART_BUFFER_SIZE];
void UART3_START();
void UART3_Handler();
#endif /* INC_UART3_HANDLER_H_ */