[STM32F0] Add support for timers.

This commit has been based on kuldeepdhaka's pioneer work, but it was reformatted to apply libopencm3 inclusion tree correctly.

timer_common_all.c now supports new rcc_periph_reset_pulse function for all families.
This commit is contained in:
Frantisek Burian
2014-03-03 00:33:32 +01:00
committed by Karl Palsson
parent f780075d4d
commit bf01d890f6
4 changed files with 87 additions and 91 deletions

View File

@@ -40,7 +40,8 @@ OBJS = flash.o rcc.o usart.o dma.o rtc.o comparator.o crc.o \
OBJS += gpio_common_all.o gpio_common_f0234.o crc_common_all.o \
pwr_common_all.o iwdg_common_all.o rtc_common_l1f024.o \
dma_common_l1f013.o exti_common_all.o spi_common_all.o \
spi_common_f03.o flash_common_f01.o dac_common_all.o
spi_common_f03.o flash_common_f01.o dac_common_all.o \
timer_common_all.o
VPATH += ../../usb:../:../../cm3:../common