mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-19 01:33:52 +08:00
8 lines
137 B
C
8 lines
137 B
C
void timer_init(TIM_TypeDef *TIM, int psc) {
|
|
TIM->PSC = psc-1;
|
|
TIM->DIER = TIM_DIER_UIE;
|
|
TIM->CR1 = TIM_CR1_CEN;
|
|
TIM->SR = 0;
|
|
}
|
|
|