1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include "stm32f0xx_hal.h" #include "stm32f0xx.h" #include "interrupts.h" extern PCD_HandleTypeDef hpcd_USB_FS; void USB_IRQHandler(void) { HAL_PCD_IRQHandler(&hpcd_USB_FS); } void SysTick_Handler(void) { HAL_IncTick(); HAL_SYSTICK_IRQHandler(); }