ST-LAB/Core/MySrc/myTIM.c
2026-01-08 14:52:33 +01:00

15 lines
No EOL
169 B
C

#include "myTIM.h"
#include "stm32h743xx.h"
void myTIM6_configure(void){
// update interrupt ivent
TIM7->DIER |= TIM_DIER_UIE;
}
void myTIM6_start();