2010-12-15 16:33:30 +01:00
|
|
|
CONTIKI_PROJECT = shell-exec-test
|
|
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
|
2013-07-11 17:50:15 +02:00
|
|
|
TARGET=mbxxx
|
2010-12-15 16:33:30 +01:00
|
|
|
COFFEE=1
|
|
|
|
ELF_LOADER=1
|
|
|
|
|
|
|
|
DEFINES=ELFLOADER_DATAMEMORY_SIZE=0x100,ELFLOADER_TEXTMEMORY_SIZE=0x100
|
|
|
|
|
|
|
|
APPS = serial-shell
|
|
|
|
PROJECT_SOURCEFILES = shell-exec.c
|
|
|
|
CONTIKI = ../../..
|
|
|
|
|
2014-11-12 10:18:29 +01:00
|
|
|
CONTIKI_WITH_RIME = 1
|
2010-12-15 16:33:30 +01:00
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
|
|
|
|
%.shell-upload: %.ce
|
|
|
|
(echo; sleep 4; echo "~K"; sleep 4; \
|
|
|
|
echo "dec64 | write $*.ce | null"; sleep 4; \
|
|
|
|
../../../tools/base64-encode < $<; sleep 4; \
|
|
|
|
echo ""; echo "~K"; echo "read $*.ce | size"; sleep 4) | make login
|
|
|
|
|
|
|
|
.PHONY: compile-executable upload-executable
|
|
|
|
compile-executable: hello-world.ce
|
|
|
|
echo Compiled Contiki executable: $<
|
|
|
|
|
|
|
|
upload-executable: hello-world.shell-upload
|
|
|
|
echo Uploaded Contiki executable: $<
|