summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-11-30 15:02:11 +0000
committerDamien <damien.p.george@gmail.com>2013-11-30 15:02:11 +0000
commitd3e59feb6bbb8039ff3d02a2a25fbcb1e2eeefd0 (patch)
treeaff6a2cf230a85394d8b2d6b0236f8375d2f8815
parent033d17a633556d10ee9485d10c607353c05bfa36 (diff)
downloadmicropython-d3e59feb6bbb8039ff3d02a2a25fbcb1e2eeefd0.tar.gz
micropython-d3e59feb6bbb8039ff3d02a2a25fbcb1e2eeefd0.zip
stm: reorder things in Makefile.
-rw-r--r--stm/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/stm/Makefile b/stm/Makefile
index fa98c6c8e8..95a525360c 100644
--- a/stm/Makefile
+++ b/stm/Makefile
@@ -14,21 +14,21 @@ SRC_C = \
main.c \
printf.c \
system_stm32f4xx.c \
+ stm32fxxx_it.c \
+ string0.c \
+ malloc0.c \
+ systick.c \
+ lexerstm.c \
led.c \
lcd.c \
flash.c \
storage.c \
mma.c \
- string0.c \
- malloc0.c \
- systick.c \
- stm32fxxx_it.c \
usart.c \
usb.c \
- sdio.c \
timer.c \
audio.c \
- lexerstm.c \
+ sdio.c \
SRC_S = \
startup_stm32f40xx.s \
@@ -62,6 +62,7 @@ SRC_FATFS = \
SRC_STM = \
stm32f4xx_rcc.c \
stm32f4xx_syscfg.c \
+ stm_misc.c \
stm32f4xx_flash.c \
stm32f4xx_dma.c \
stm32f4xx_gpio.c \
@@ -74,7 +75,6 @@ SRC_STM = \
stm32f4xx_spi.c \
stm32f4xx_dac.c \
stm32f4xx_rng.c \
- stm_misc.c \
usb_core.c \
usb_dcd.c \
usb_dcd_int.c \