#define INCLUDE_FROM_V2PROTOCOL_C\r
#include "V2Protocol.h"\r
\r
-/** Master V2 Protocol packet handler, for receieved V2 Protocol packets from a connected host.\r
+/** Master V2 Protocol packet handler, for received V2 Protocol packets from a connected host.\r
* This routine decodes the issued command and passes off the handling of the command to the\r
* appropriate function.\r
*/\r
-void V2Protocol_ProcessCommand(void)
-{
+void V2Protocol_ProcessCommand(void)\r
+{\r
uint8_t V2Command = Endpoint_Read_Byte();\r
\r
switch (V2Command)\r
}\r
\r
Endpoint_WaitUntilReady();\r
- Endpoint_SetEndpointDirection(ENDPOINT_DIR_OUT);
-}
+ Endpoint_SetEndpointDirection(ENDPOINT_DIR_OUT);\r
+}\r
\r
/** Handler for unknown V2 protocol commands. This discards all sent data and returns a\r
* STATUS_CMD_UNKNOWN status back to the host.\r
*/\r
static void V2Protocol_Command_Unknown(uint8_t V2Command)\r
{\r
- /* Discard all incomming data */\r
+ /* Discard all incoming data */\r
while (Endpoint_BytesInEndpoint() == AVRISP_DATA_EPSIZE)\r
{\r
Endpoint_ClearOUT();\r
Endpoint_ClearIN();\r
}\r
\r
-/** Handler for the CMD_SIGN_ON command, returning the programmer ID string to the host. */
+/** Handler for the CMD_SIGN_ON command, returning the programmer ID string to the host. */\r
static void V2Protocol_Command_SignOn(void)\r
{\r
Endpoint_ClearOUT();\r
\r
Endpoint_Write_Byte(V2Command);\r
\r
- uint8_t ParamPrivs = V2Params_GetParameterPrivellages(ParamID);\r
+ uint8_t ParamPrivs = V2Params_GetParameterPrivileges(ParamID);\r
\r
if ((V2Command == CMD_SET_PARAMETER) && (ParamPrivs & PARAM_PRIV_WRITE))\r
{\r