diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-02-06 11:42:26 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-02-06 11:42:26 +0000 |
commit | ea6abe0731888c334b721970d37d3aef0a8ab220 (patch) | |
tree | 3c75aebc26617d71661268423131a1d1dbf27bf4 /testhal/STM32/STM32F30x | |
parent | 433537d2cfdba474bf5e2a9dce72edca88c7040e (diff) | |
download | ChibiOS-ea6abe0731888c334b721970d37d3aef0a8ab220.tar.gz ChibiOS-ea6abe0731888c334b721970d37d3aef0a8ab220.tar.bz2 ChibiOS-ea6abe0731888c334b721970d37d3aef0a8ab220.zip |
chprintf and streams are now part of the HAL library.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7665 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F30x')
-rw-r--r-- | testhal/STM32/STM32F30x/USB_CDC/Makefile | 3 | ||||
-rw-r--r-- | testhal/STM32/STM32F30x/USB_CDC_IAD/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/testhal/STM32/STM32F30x/USB_CDC/Makefile b/testhal/STM32/STM32F30x/USB_CDC/Makefile index 4028a4949..b54a31026 100644 --- a/testhal/STM32/STM32F30x/USB_CDC/Makefile +++ b/testhal/STM32/STM32F30x/USB_CDC/Makefile @@ -102,7 +102,8 @@ CSRC = $(PORTSRC) \ $(PLATFORMSRC) \
$(BOARDSRC) \
$(CHIBIOS)/os/various/shell.c \
- $(CHIBIOS)/os/various/chprintf.c \
+ $(CHIBIOS)/os/hal/lib/streams/memstreams.c \
+ $(CHIBIOS)/os/hal/lib/streams/chprintf.c \
main.c
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
diff --git a/testhal/STM32/STM32F30x/USB_CDC_IAD/Makefile b/testhal/STM32/STM32F30x/USB_CDC_IAD/Makefile index 4b3d40da0..b5e2e4d22 100644 --- a/testhal/STM32/STM32F30x/USB_CDC_IAD/Makefile +++ b/testhal/STM32/STM32F30x/USB_CDC_IAD/Makefile @@ -102,7 +102,8 @@ CSRC = $(PORTSRC) \ $(PLATFORMSRC) \
$(BOARDSRC) \
$(CHIBIOS)/os/various/shell.c \
- $(CHIBIOS)/os/various/chprintf.c \
+ $(CHIBIOS)/os/hal/lib/streams/memstreams.c \
+ $(CHIBIOS)/os/hal/lib/streams/chprintf.c \
usbcfg.c main.c
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
|