my own random

This commit is contained in:
2019-02-03 23:19:09 +01:00
parent f6f69dd9b2
commit a31c929053
4 changed files with 159 additions and 10 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
blinky1.elf: main.o led.o time.o pattern.o PontCoopScheduler.o myrand.o
$(CC) -o $@ $(LDFLAGS) $^
PontCoopScheduler.o: hottislib/PontCoopScheduler.c hottislib/PontCoopScheduler.h