From db09cf20e709a1aafd1d91a5de99e4dcda7927a4 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 29 Nov 2010 23:07:51 +0100 Subject: digital/avr/modules/twi: implement software master, closes #141 --- digital/avr/modules/twi/test/soft/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 digital/avr/modules/twi/test/soft/Makefile (limited to 'digital/avr/modules/twi/test/soft/Makefile') diff --git a/digital/avr/modules/twi/test/soft/Makefile b/digital/avr/modules/twi/test/soft/Makefile new file mode 100644 index 00000000..68b9da2c --- /dev/null +++ b/digital/avr/modules/twi/test/soft/Makefile @@ -0,0 +1,14 @@ +BASE = ../../../.. +AVR_PROGS = test_twi_soft +test_twi_soft_SOURCES = test_twi.c +MODULES = twi uart proto math/random utils +CONFIGFILE = avrconfig.h +# atmega8, atmega8535, atmega128... +AVR_MCU = atmega128 +# -O2 : speed +# -Os : size +OPTIMIZE = -Os + +vpath %.c .. + +include $(BASE)/make/Makefile.gen -- cgit v1.2.3