comented out timer clock source selection fucntion. clock sourcing needs to be discussed generally

interrupts
polymurph 4 years ago
parent c69922ff2c
commit c1d7904314

@ -45,7 +45,10 @@ void timerReset(timerNo_t timer);
void timerActivateBus(timerNo_t timer);
void timerEnableTimer(timerNo_t timer);
void timerDisableTimer(timerNo_t timer);
void timerSetClkSource(timerNo_t timer, clkSources_t clk);
// -> clock source is set by the clock tree and cant be individually set. This should be done
// in the clock domain and nt here in the timerdomain. For reference one can look at the nucleo
// stm32f042k6 clock tree diagramm in reference Manual
//void timerSetClkSource(timerNo_t timer, clkSources_t clk);
void timerSetMode(timerNo_t timer, timerMode_t mode);
void timerSetCountDirection(timerNo_t timer, timerCountDirection_t direction);
void timerSetPrescaler(timerNo_t timer, uint32_t prescaler);

Loading…
Cancel
Save