summaryrefslogtreecommitdiff
path: root/usart/usart.cpp
blob: 9de49af58b8b9686ff2e931be8822a61ce9789db (plain)
1
2
3
4
5
6
7
8
9
10
11
#if defined(STM32F1) || defined(STM32F3) || defined(STM32F4)

#include "usart.h"

template<>
void interrupt<Interrupt::USART1>() {
	USART1.recv();
	//GPIOB.ODR ^= 1 << 1;
}

#endif