Files @ aa624684a65e
Branch filter:

Location: FeatherHAB/wsprhab/inc/interrupts.h

Ethan Zonca
Update CMSIS and HAL library, fixes USART issues! Now the uart actually receives data from the GPS.
1
2
3
4
5
6
7
8
#ifndef __STM32F0xx_IT_H
#define __STM32F0xx_IT_H

void SysTick_Handler(void);
void DMA1_Channel2_3_IRQHandler(void);
void USART1_IRQHandler(void);

#endif