diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-16 11:09:29 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-16 11:09:29 +0000 |
commit | 1914bcbbf422a9616dd2c1d6906a8ced3548921d (patch) | |
tree | 42ca5cc9364fa993ec6fef3d1f31671ba4dfa6f2 /os/rt/rt.mk | |
parent | 8ecb193368678a4a75cb65674fdb69e97888adfd (diff) | |
download | ChibiOS-1914bcbbf422a9616dd2c1d6906a8ced3548921d.tar.gz ChibiOS-1914bcbbf422a9616dd2c1d6906a8ced3548921d.tar.bz2 ChibiOS-1914bcbbf422a9616dd2c1d6906a8ced3548921d.zip |
Removed I/O queues and streams from RT.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9125 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/rt.mk')
-rw-r--r-- | os/rt/rt.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/os/rt/rt.mk b/os/rt/rt.mk index cf92d654d..c445d305f 100644 --- a/os/rt/rt.mk +++ b/os/rt/rt.mk @@ -32,9 +32,6 @@ endif ifneq ($(findstring CH_CFG_USE_MESSAGES TRUE,$(CHCONF)),)
KERNSRC += $(CHIBIOS)/os/rt/src/chmsg.c
endif
-ifneq ($(findstring CH_CFG_USE_QUEUES TRUE,$(CHCONF)),)
-KERNSRC += $(CHIBIOS)/os/rt/src/chqueues.c
-endif
ifneq ($(findstring CH_CFG_USE_DYNAMIC TRUE,$(CHCONF)),)
KERNSRC += $(CHIBIOS)/os/rt/src/chdynamic.c
endif
@@ -64,7 +61,6 @@ KERNSRC := $(CHIBIOS)/os/rt/src/chsys.c \ $(CHIBIOS)/os/rt/src/chcond.c \
$(CHIBIOS)/os/rt/src/chevents.c \
$(CHIBIOS)/os/rt/src/chmsg.c \
- $(CHIBIOS)/os/rt/src/chqueues.c \
$(CHIBIOS)/os/rt/src/chdynamic.c \
$(CHIBIOS)/os/common/oslib/src/chmboxes.c \
$(CHIBIOS)/os/common/oslib/src/chmemcore.c \
|