summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-02-12 14:11:21 +1100
committerDamien George <damien.p.george@gmail.com>2019-02-12 14:11:21 +1100
commite6d97e8a0be1f7795f8c93b30ec7655c9ca09a7c (patch)
tree036cb016eb698c008ab79cdfacdf49b5cdc3d57b
parente7332b05841549a41614e522285639dcaa7bd526 (diff)
downloadmicropython-e6d97e8a0be1f7795f8c93b30ec7655c9ca09a7c.tar.gz
micropython-e6d97e8a0be1f7795f8c93b30ec7655c9ca09a7c.zip
stm32: Move gchelper assembler code to lib/utils for use by other ports.
-rw-r--r--lib/utils/gchelper_m0.s (renamed from ports/stm32/gchelper_m0.s)0
-rw-r--r--lib/utils/gchelper_m3.s (renamed from ports/stm32/gchelper.s)0
-rw-r--r--ports/stm32/Makefile4
3 files changed, 2 insertions, 2 deletions
diff --git a/ports/stm32/gchelper_m0.s b/lib/utils/gchelper_m0.s
index db0d9738d1..db0d9738d1 100644
--- a/ports/stm32/gchelper_m0.s
+++ b/lib/utils/gchelper_m0.s
diff --git a/ports/stm32/gchelper.s b/lib/utils/gchelper_m3.s
index 6baedcdd0e..6baedcdd0e 100644
--- a/ports/stm32/gchelper.s
+++ b/lib/utils/gchelper_m3.s
diff --git a/ports/stm32/Makefile b/ports/stm32/Makefile
index ee4de61cc4..c7dc99fd7d 100644
--- a/ports/stm32/Makefile
+++ b/ports/stm32/Makefile
@@ -275,13 +275,13 @@ SRC_O = \
$(STARTUP_FILE) \
system_stm32f0.o \
resethandler_m0.o \
- gchelper_m0.o
+ lib/utils/gchelper_m0.o
else
SRC_O = \
$(STARTUP_FILE) \
system_stm32.o \
resethandler.o \
- gchelper.o
+ lib/utils/gchelper_m3.o
endif
SRC_HAL = $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_,\