Spell check all source code variables, comments and strings.
This commit is contained in:
+12
-12
@@ -48,7 +48,7 @@ int main(void)
|
||||
LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
|
||||
|
||||
for (;;)
|
||||
{
|
||||
{
|
||||
Process_AVRISP_Commands();
|
||||
|
||||
V2Params_UpdateParamValues();
|
||||
@@ -111,20 +111,20 @@ void EVENT_USB_Device_ConfigurationChanged(void)
|
||||
}
|
||||
}
|
||||
|
||||
/** Processes incomming V2 Protocol commands from the host, returning a response when required. */
|
||||
void Process_AVRISP_Commands(void)
|
||||
{
|
||||
/** Processes incoming V2 Protocol commands from the host, returning a response when required. */
|
||||
void Process_AVRISP_Commands(void)
|
||||
{
|
||||
/* Device must be connected and configured for the task to run */
|
||||
if (USB_DeviceState != DEVICE_STATE_Configured)
|
||||
return;
|
||||
|
||||
return;
|
||||
|
||||
Endpoint_SelectEndpoint(AVRISP_DATA_EPNUM);
|
||||
|
||||
/* Check to see if a V2 Protocol command has been received */
|
||||
|
||||
/* Check to see if a V2 Protocol command has been received */
|
||||
if (Endpoint_IsOUTReceived())
|
||||
{
|
||||
/* Pass off processing of the V2 Protocol command to the V2 Protocol handler */
|
||||
{
|
||||
/* Pass off processing of the V2 Protocol command to the V2 Protocol handler */
|
||||
V2Protocol_ProcessCommand();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user