X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/ed031c1df2f5b053b9cd9f48c63e66a42b7c049e..fea5d085122bb386f1ec293b2e51036e29c7dc30:/Demos/OTG/TestApp/TestApp.c diff --git a/Demos/OTG/TestApp/TestApp.c b/Demos/OTG/TestApp/TestApp.c index a66a728c9..49fdf6782 100644 --- a/Demos/OTG/TestApp/TestApp.c +++ b/Demos/OTG/TestApp/TestApp.c @@ -80,7 +80,7 @@ int main(void) /* Turn on interrupts */ sei(); - /* Startup message via USART */ + /* Start-up message via USART */ puts_P(PSTR(ESC_RESET ESC_BG_WHITE ESC_INVERSE_ON ESC_ERASE_DISPLAY "LUFA Demo running.\r\n" ESC_INVERSE_OFF)); @@ -130,7 +130,7 @@ TASK(TestApp_CheckJoystick) */ TASK(TestApp_CheckTemp) { - static SchedulerDelayCounter_t DelayCounter = 10000; // Force immediate run on startup + static SchedulerDelayCounter_t DelayCounter = 10000; // Force immediate run on start-up /* Task runs every 10000 ticks, 10 seconds for this demo */ if (Scheduler_HasDelayElapsed(10000, &DelayCounter)) @@ -161,7 +161,7 @@ TASK(TestApp_CheckHWB) /* Set flag, indicating that current pressed state has been handled */ IsPressed = true; - /* First start of the USB interface permenantly blocks the joystick task */ + /* First start of the USB interface permanently blocks the joystick task */ if (BlockingJoystickTask == false) { Scheduler_SetTaskMode(TestApp_CheckJoystick, TASK_STOP);