From 5830fae26f7dfeb7a263ba5e1b024694930c64ff Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 4 Jan 2014 18:55:44 +0200 Subject: Don't error out if build/ directory already exists. --- stm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stm/Makefile') diff --git a/stm/Makefile b/stm/Makefile index e84e21eae..729913bae 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -162,7 +162,7 @@ $(BUILD)/flash.elf: $(OBJ) arm-none-eabi-size $@ $(BUILD): - mkdir $@ + mkdir -p $@ $(BUILD)/%.o: %.s $(AS) -o $@ $< -- cgit v1.2.3 From 71c5181a8dfa69ba9f5ca322a3aba0660be2e166 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 4 Jan 2014 20:21:15 +0000 Subject: Convert Python types to proper Python type hierarchy. Now much more inline with how CPython does types. --- stm/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'stm/Makefile') diff --git a/stm/Makefile b/stm/Makefile index 729913bae..d75c945bf 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -73,6 +73,7 @@ PY_O = \ objfun.o \ objgenerator.o \ objinstance.o \ + objint.o \ objlist.o \ objmodule.o \ objnone.o \ -- cgit v1.2.3 From de7fcc0c065c6854e02e0146165be0940fd30510 Mon Sep 17 00:00:00 2001 From: mux Date: Sun, 5 Jan 2014 14:52:37 +0200 Subject: Move user switch code into a separate module * Move user switch code from main.c into a separate module (usrsw) * Add usrsw.c to Makefile --- stm/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'stm/Makefile') diff --git a/stm/Makefile b/stm/Makefile index d75c945bf..93e87ec4a 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -36,6 +36,7 @@ SRC_C = \ sdio.c \ pybwlan.c \ i2c.c \ + usrsw.c \ SRC_S = \ startup_stm32f40xx.s \ -- cgit v1.2.3