tabs to spaces

This commit is contained in:
2019-01-24 09:15:08 +01:00
parent db90eb17f9
commit fb0cfc87bd
2 changed files with 18 additions and 18 deletions

8
led.c
View File

@ -13,12 +13,12 @@
void ledExec() {
P1OUT ^= BIT0;
P1OUT ^= BIT0;
}
void ledInit() {
P1DIR |= BIT0;
P1OUT &= ~BIT0;
P1DIR |= BIT0;
P1OUT &= ~BIT0;
schAdd(ledExec, NULL, 0, 100);
schAdd(ledExec, NULL, 0, 100);
}