From 6185da7b80538d48777e7ff90c9d302ee870b46d Mon Sep 17 00:00:00 2001 From: Adam Dunkels Date: Wed, 18 Jan 2012 06:13:17 -0800 Subject: [PATCH] Default to SMALL unless otherwise specified, to get size of binaries smaller so that Contiki with RPL/IPv6 fits on the Tmote Sky again. --- platform/sky/Makefile.sky | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/platform/sky/Makefile.sky b/platform/sky/Makefile.sky index 1a91d976a..8c39a6c28 100644 --- a/platform/sky/Makefile.sky +++ b/platform/sky/Makefile.sky @@ -4,4 +4,9 @@ CONTIKI_TARGET_SOURCEFILES += contiki-sky-platform.c \ sht11.c sht11-sensor.c light-sensor.c battery-sensor.c \ button-sensor.c radio-sensor.c +ifndef SMALL +SMALL=1 +endif + include $(CONTIKI)/platform/sky/Makefile.common +