diff options
Diffstat (limited to 'testhal/AVR/I2C/main.c')
-rw-r--r-- | testhal/AVR/I2C/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testhal/AVR/I2C/main.c b/testhal/AVR/I2C/main.c index fc68956c3..50d979693 100644 --- a/testhal/AVR/I2C/main.c +++ b/testhal/AVR/I2C/main.c @@ -20,11 +20,10 @@ static WORKING_AREA(waThread1, 32);
static msg_t Thread1(void *arg) {
- while (TRUE) {
+ while (true) {
palTogglePad(IOPORT2, PORTB_LED1);
chThdSleepMilliseconds(1000);
}
- return 0;
}
/*
|