Rename processing function, remove trailing spaces

This commit is contained in:
Reed Nightingale 2020-05-03 15:34:13 -07:00
parent 18a05460aa
commit 8aa80bdbc7

View File

@ -253,7 +253,7 @@ void catReadEEPRom(uint8_t* cat)
Serial.write(cat, 2);
}
void processCATCommand2(uint8_t* cmd) {
void processCatCommand(uint8_t* cmd) {
uint8_t response[5];
unsigned long f;
@ -401,7 +401,7 @@ void checkCAT(){
}
}
processCATCommand2(rx_buffer);
processCatCommand(rx_buffer);
current_index = 0;
timeout = 0;
}