37d7870e52
* FuriHal: port spi to ll. Bootloader: add spi and display. * Makefile: rollback disabled freertos introspection * FuriHal: spi lock asserts. F6: minor cleanup port sdcard shenanigans to furi_hal_gpio. * SdCard: port missing bits to furi-hal-gpio * FuriHal: fix broken RX in SPI, update SPI API usage. RFAL: more asserts in SPI platform code. * GUI: clear canvas on start. FuriHal: no pullup on radio spi bus. * FuriHal: use check instead of assert in spi lock routines * FuriHal: remove timeouts * SdHal: add guard time to SDCARD CS PIN control. * FuriHal: proper name for SPI device reconfigure routine. SdHal: one more enterprise delay and better documentation. * Bootloader: update DFU text and add image. * FuriHal: drop unused ST HAL modules. * SdHal: fixed swapped hal_gpio_init_ex arguments * SpiHal: fixed swapped hal_gpio_init_ex arguments * IrdaHal: use hal_gpio_init instead of hal_gpio_init_ex * RfidHal: fixed swapped hal_gpio_init_ex arguments Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
53 lines
1.0 KiB
C
53 lines
1.0 KiB
C
#include "main.h"
|
|
#include "stm32wbxx_it.h"
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
|
|
extern PCD_HandleTypeDef hpcd_USB_FS;
|
|
extern COMP_HandleTypeDef hcomp1;
|
|
extern RTC_HandleTypeDef hrtc;
|
|
extern TIM_HandleTypeDef htim1;
|
|
extern TIM_HandleTypeDef htim2;
|
|
extern TIM_HandleTypeDef htim16;
|
|
extern TIM_HandleTypeDef htim17;
|
|
|
|
extern void HW_TS_RTC_Wakeup_Handler();
|
|
extern void HW_IPCC_Tx_Handler();
|
|
extern void HW_IPCC_Rx_Handler();
|
|
|
|
void SysTick_Handler(void) {
|
|
HAL_IncTick();
|
|
}
|
|
|
|
void USB_LP_IRQHandler(void) {
|
|
HAL_PCD_IRQHandler(&hpcd_USB_FS);
|
|
}
|
|
|
|
void COMP_IRQHandler(void) {
|
|
HAL_COMP_IRQHandler(&hcomp1);
|
|
}
|
|
|
|
void TIM1_TRG_COM_TIM17_IRQHandler(void) {
|
|
HAL_TIM_IRQHandler(&htim1);
|
|
}
|
|
|
|
void TIM1_CC_IRQHandler(void) {
|
|
HAL_TIM_IRQHandler(&htim1);
|
|
}
|
|
|
|
void HSEM_IRQHandler(void) {
|
|
HAL_HSEM_IRQHandler();
|
|
}
|
|
|
|
void RTC_WKUP_IRQHandler(void){
|
|
HW_TS_RTC_Wakeup_Handler();
|
|
}
|
|
|
|
void IPCC_C1_TX_IRQHandler(void){
|
|
HW_IPCC_Tx_Handler();
|
|
}
|
|
|
|
void IPCC_C1_RX_IRQHandler(void){
|
|
HW_IPCC_Rx_Handler();
|
|
}
|