X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/ed031c1df2f5b053b9cd9f48c63e66a42b7c049e..7d4cccc22d60125fac111819df48af1873d11018:/Demos/Device/Keyboard/Keyboard.c diff --git a/Demos/Device/Keyboard/Keyboard.c b/Demos/Device/Keyboard/Keyboard.c index d6b254ffb..d118edea6 100644 --- a/Demos/Device/Keyboard/Keyboard.c +++ b/Demos/Device/Keyboard/Keyboard.c @@ -31,7 +31,7 @@ /** \file * - * Main source file for the KeyboardFullInt demo. This file contains the main tasks of the demo and + * Main source file for the Keyboard demo. This file contains the main tasks of the demo and * is responsible for the initial application hardware configuration. */ @@ -67,7 +67,7 @@ bool UsingReportProtocol = true; uint8_t IdleCount = 0; /** Current Idle period remaining. When the IdleCount value is set, this tracks the remaining number of idle - * milliseconds. This is seperate to the IdleCount timer and is incremented and compared as the host may request + * milliseconds. This is separate to the IdleCount timer and is incremented and compared as the host may request * the current idle period via a Get Idle HID class request, thus its value must be preserved. */ uint16_t IdleMSRemaining = 0; @@ -243,7 +243,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket) /* Read in the LED report from the host */ uint8_t LEDStatus = Endpoint_Read_Byte(); - /* Process the incomming LED report */ + /* Process the incoming LED report */ ProcessLEDReport(LEDStatus); /* Clear the endpoint data */ @@ -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 * log to a serial port, or anything else that is suitable for status updates. * - * \param CurrentStatus Current status of the system, from the KeyboardFullInt_StatusCodes_t enum + * \param CurrentStatus Current status of the system, from the Keyboard_StatusCodes_t enum */ void UpdateStatus(uint8_t CurrentStatus) { @@ -545,4 +545,3 @@ ISR(ENDPOINT_PIPE_vect, ISR_BLOCK) } #endif } -