mirror of
https://github.com/DashyFox/StackSport.git
synced 2025-05-04 15:20:16 +00:00
21 lines
328 B
C
21 lines
328 B
C
/*
|
|
* 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_ */
|