[STM32] Removed exti.c from f1 and made global exti.c usable.

Because most changes are internal to a function in exti.c I am leaving
the macro checks in there, otherwise we would end up with a bunch of
code duplication if we used the dispatch system used otherwise
throughout the stm32 part of the library. I bet it could be split up
into more granular functions resulting in more generic code that we
could run through the dispatch system. But I am leaving that as an
excersize for later.
This commit is contained in:
Piotr Esden-Tempski
2013-07-04 18:53:21 -07:00
parent 74eb5ab84a
commit 201c2706b5
6 changed files with 29 additions and 173 deletions

View File

@@ -33,7 +33,7 @@ CFLAGS = -Os -g \
# ARFLAGS = rcsv
ARFLAGS = rcs
OBJS = gpio.o exti2.o rcc.o
OBJS = gpio.o exti.o rcc.o
OBJS += crc_common_all.o dac_common_all.o dma_common_f24.o \
gpio_common_all.o gpio_common_f234.o i2c_common_all.o \