diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-10 18:57:45 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-10 18:58:58 +0200 |
commit | 73ff0687f2f5331e962a4af0126097e9921db631 (patch) | |
tree | 74d585ab25bfc3097f7a4fdad22e1ae54bb2c06b /teensy | |
parent | b1dbbd32ebcdafd046e8d69ec29a1565f42765cb (diff) | |
download | micropython-73ff0687f2f5331e962a4af0126097e9921db631.tar.gz micropython-73ff0687f2f5331e962a4af0126097e9921db631.zip |
lib/utils/printf: Move from stmhal/ .
This file contains various MicroPython-specific helper functions, so isn't
good fit for lib/libc/.
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/Makefile b/teensy/Makefile index b458485ce5..c182631802 100644 --- a/teensy/Makefile +++ b/teensy/Makefile @@ -98,7 +98,6 @@ STM_SRC_C = $(addprefix stmhal/,\ irq.c \ pin.c \ pin_named_pins.c \ - printf.c \ pybstdio.c \ ) @@ -110,6 +109,7 @@ LIB_SRC_C = $(addprefix lib/,\ libc/string0.c \ mp-readline/readline.c \ utils/pyexec.c \ + utils/printf.c \ ) SRC_TEENSY = $(addprefix core/,\ |