 734820c137
			
		
	
	
		734820c137
		
			
		
	
	
	
	
		
			
			* Targets: add F6 * F6: Update linker script for use with internal storage * F6: synchronize with F5, add all changes arriving in V9 board, update cube project. Github workflow: add multi-target build, add F6 to build targets. * CI: fix full assembly * CI: better artifact naming scheme * CI: fix artifacts wildcard * F6: Swap C10 - A15, vibro and sdcard detect pins
		
			
				
	
	
		
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "api-hal/api-interrupt-mgr.h"
 | |
| #include <main.h>
 | |
| 
 | |
| extern void api_interrupt_call(InterruptType type, void* hw);
 | |
| 
 | |
| /* interrupts */
 | |
| 
 | |
| /* Comparator trigger event */
 | |
| void HAL_COMP_TriggerCallback(COMP_HandleTypeDef* hcomp) {
 | |
|     api_interrupt_call(InterruptTypeComparatorTrigger, hcomp);
 | |
| }
 | |
| 
 | |
| /* Timer input capture event */
 | |
| void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef* htim) {
 | |
|     api_interrupt_call(InterruptTypeTimerCapture, htim);
 | |
| }
 | |
| 
 | |
| /* Output compare event */
 | |
| void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef* htim) {
 | |
|     api_interrupt_call(InterruptTypeTimerOutputCompare, htim);
 | |
| }
 | |
| 
 | |
| /* Timer update event */
 | |
| void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef* htim) {
 | |
|     api_interrupt_call(InterruptTypeTimerUpdate, htim);
 | |
| }
 |