EPROMEmu/Src/usart.c

7 lines
90 B
C
Raw Normal View History

2019-08-14 08:25:23 -07:00
#include "usart.h"
2019-08-16 01:32:46 -07:00
void USART1_IRQHandler(void)
2019-08-14 08:25:23 -07:00
{
2019-08-16 01:32:46 -07:00
HAL_UART_IRQHandler(&huart1);
2019-08-14 08:25:23 -07:00
}