removed unused variable

This commit is contained in:
András Veres-Szentkirályi 2016-05-10 10:33:30 +02:00
parent b324b02f88
commit f9ce1c3a00

View file

@ -62,7 +62,6 @@ int CmdLFCommandRead(const char *Cmd)
bool errors = FALSE; bool errors = FALSE;
//uint8_t divisor = 95; //125khz //uint8_t divisor = 95; //125khz
uint8_t cmdp = 0; uint8_t cmdp = 0;
int strLength = 0;
while(param_getchar(Cmd, cmdp) != 0x00) while(param_getchar(Cmd, cmdp) != 0x00)
{ {
switch(param_getchar(Cmd, cmdp)) switch(param_getchar(Cmd, cmdp))
@ -78,7 +77,7 @@ int CmdLFCommandRead(const char *Cmd)
cmdp++; cmdp++;
break; break;
case 'c': case 'c':
strLength = param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes); param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
cmdp+=2; cmdp+=2;
break; break;
case 'd': case 'd':