add Makefile

This commit is contained in:
2019-01-24 09:05:31 +01:00
parent 783e8a357e
commit e84b902996
2 changed files with 26 additions and 1 deletions

2
led.c
View File

@ -20,5 +20,5 @@ void ledInit() {
P1DIR |= BIT0;
P1OUT &= ~BIT0;
schAdd(ledExec, NULL, 0, 1000);
schAdd(ledExec, NULL, 0, 100);
}