From 3875f37b2ce1d020aaf5174ea2a885bfdb98db98 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 12 Jan 2018 14:40:30 +0100 Subject: add stdin for esp8266 and msp430 as well as preliminary shell app --- src/arch/esp8266/Makefile.inc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch/esp8266/Makefile.inc') diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index 69a96f1..82755ce 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -29,6 +29,10 @@ ifeq (${esp8266_led2}, 1) COMMON_FLAGS += -DLED_ON_GPIO16 endif +ifneq ($(findstring stdin,${arch_drivers}), ) + TARGETS += src/arch/esp8266/driver/stdin.cc +endif + .cc.o: ${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} -c -o $@ ${@:.o=.cc} ${OBJCOPY} --rename-section .text=.irom0.text --rename-section .literal=.irom0.literal $@ -- cgit v1.2.3