aboutsummaryrefslogtreecommitdiff
path: root/pic16bit
diff options
context:
space:
mode:
Diffstat (limited to 'pic16bit')
-rw-r--r--pic16bit/Makefile6
-rw-r--r--pic16bit/qstrdefsport.h16
2 files changed, 6 insertions, 16 deletions
diff --git a/pic16bit/Makefile b/pic16bit/Makefile
index a16a26386..cfe8af86e 100644
--- a/pic16bit/Makefile
+++ b/pic16bit/Makefile
@@ -49,6 +49,12 @@ SRC_S = \
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(SRC_S:.s=.o))
+# List of sources for qstr extraction
+SRC_QSTR += $(SRC_C)
+# Append any auto-generated sources that are needed by sources listed in
+# SRC_QSTR
+SRC_QSTR_AUTO_DEPS +=
+
all: $(BUILD)/firmware.hex
$(BUILD)/firmware.hex: $(BUILD)/firmware.elf
diff --git a/pic16bit/qstrdefsport.h b/pic16bit/qstrdefsport.h
index f532bb0b0..3ba897069 100644
--- a/pic16bit/qstrdefsport.h
+++ b/pic16bit/qstrdefsport.h
@@ -1,17 +1 @@
// qstrs specific to this port
-
-Q(pyb)
-Q(millis)
-Q(elapsed_millis)
-Q(delay)
-Q(LED)
-Q(on)
-Q(off)
-Q(toggle)
-Q(Switch)
-Q(value)
-Q(readall)
-Q(readinto)
-Q(readline)
-Q(readlines)
-Q(FileIO)