Skip to content

Commit

Permalink
Remove unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
xnk committed Dec 20, 2014
1 parent 1486adc commit 7377cde
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,13 @@ int main(void) {
Buzzer_Beep( BUZZ_1KHZ, 255, TICKS_MS(100) );

while(1) {
#ifdef ENABLE_SLEEP
int32_t sleeptime;
sleeptime=Sched_Do( 0 ); // No fast-forward support
//printf("\n%d ticks 'til next activity"),sleeptime);
#else
Sched_Do( 0 ); // No fast-forward support
#endif
}
return 0;
}
Expand Down

0 comments on commit 7377cde

Please sign in to comment.