stm32: timers: drop deprecated timer_reset()

We didn't actually mark it deprecated very well, but it was
non-functional, and simply a poorly implemented wrapper for
rcc_periph_reset_pulse() anyway.

It's now been obsoleted in the examples for more than a year, and it's
time to kill it outright.

Fixes: https://github.com/libopencm3/libopencm3/issues/709
This commit is contained in:
Karl Palsson
2018-05-04 19:36:42 +00:00
parent 64e26832c7
commit 034dbf20ff
2 changed files with 0 additions and 72 deletions

View File

@@ -1170,7 +1170,6 @@ enum tim_et_pol {
BEGIN_DECLS
void timer_reset(uint32_t timer_peripheral);
void timer_enable_irq(uint32_t timer_peripheral, uint32_t irq);
void timer_disable_irq(uint32_t timer_peripheral, uint32_t irq);
bool timer_interrupt_source(uint32_t timer_peripheral, uint32_t flag);