Move StdRequestType.h, StreamCallbacks.h, USBMode.h from the LowLevel USB driver...
[pub/USBasp.git] / Demos / Device / Keyboard / Keyboard.c
index d6b254f..d118ede 100644 (file)
@@ -31,7 +31,7 @@
 \r
 /** \file\r
  *\r
- *  Main source file for the KeyboardFullInt demo. This file contains the main tasks of the demo and\r
+ *  Main source file for the Keyboard demo. This file contains the main tasks of the demo and\r
  *  is responsible for the initial application hardware configuration.\r
  */\r
  \r
@@ -67,7 +67,7 @@ bool UsingReportProtocol = true;
 uint8_t IdleCount = 0;\r
 \r
 /** Current Idle period remaining. When the IdleCount value is set, this tracks the remaining number of idle\r
- *  milliseconds. This is seperate to the IdleCount timer and is incremented and compared as the host may request \r
+ *  milliseconds. This is separate to the IdleCount timer and is incremented and compared as the host may request \r
  *  the current idle period via a Get Idle HID class request, thus its value must be preserved.\r
  */\r
 uint16_t IdleMSRemaining = 0;\r
@@ -243,7 +243,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket)
                                /* Read in the LED report from the host */\r
                                uint8_t LEDStatus = Endpoint_Read_Byte();\r
 \r
-                               /* Process the incomming LED report */\r
+                               /* Process the incoming LED report */\r
                                ProcessLEDReport(LEDStatus);\r
                        \r
                                /* Clear the endpoint data */\r
@@ -448,7 +448,7 @@ static inline void ReceiveNextReport(void)
 /** Function to manage status updates to the user. This is done via LEDs on the given board, if available, but may be changed to\r
  *  log to a serial port, or anything else that is suitable for status updates.\r
  *\r
- *  \param CurrentStatus  Current status of the system, from the KeyboardFullInt_StatusCodes_t enum\r
+ *  \param CurrentStatus  Current status of the system, from the Keyboard_StatusCodes_t enum\r
  */\r
 void UpdateStatus(uint8_t CurrentStatus)\r
 {\r
@@ -545,4 +545,3 @@ ISR(ENDPOINT_PIPE_vect, ISR_BLOCK)
        }\r
        #endif\r
 }\r
-\r