add measurement, stolen from tea thermometer

This commit is contained in:
2019-02-04 10:03:10 +01:00
parent a31c929053
commit d3e3967bee
5 changed files with 118 additions and 1 deletions

View File

@ -2,7 +2,7 @@ CC=msp430-gcc
CFLAGS=-O3 -g0 -Wall -mmcu=msp430g2553 -std=gnu99 -I hottislib
LDFLAGS=-mmcu=msp430g2553
blinky1.elf: main.o led.o time.o pattern.o PontCoopScheduler.o myrand.o
blinky1.elf: main.o led.o time.o pattern.o PontCoopScheduler.o myrand.o measure.o
$(CC) -o $@ $(LDFLAGS) $^
PontCoopScheduler.o: hottislib/PontCoopScheduler.c hottislib/PontCoopScheduler.h