Allow manual position commands while driving
This commit is contained in:
+2
-5
@@ -436,10 +436,7 @@ void processSerialCommand(String command) {
|
||||
}
|
||||
|
||||
bool requiresParkingForCommand(char name) {
|
||||
return name == 'p' ||
|
||||
name == 'u' ||
|
||||
name == 'd' ||
|
||||
name == 'a' ||
|
||||
return name == 'a' ||
|
||||
name == 'c' ||
|
||||
name == 'r';
|
||||
}
|
||||
@@ -561,7 +558,7 @@ void printIntro() {
|
||||
Serial.println(F("+--------------------------------------------------+"));
|
||||
Serial.println(F("| Units: milliseconds. 0 = bottom. 6000 = top cap. |"));
|
||||
Serial.println(F("| Normal auto move target is saved in EEPROM. |"));
|
||||
Serial.println(F("| Action commands require gear P for safety. |"));
|
||||
Serial.println(F("| a/c/r commands require gear P for safety. |"));
|
||||
Serial.println(F("| Serial output is quiet unless a command is used. |"));
|
||||
Serial.println(F("+--------------------------------------------------+"));
|
||||
Serial.println(F("Commands:"));
|
||||
|
||||
Reference in New Issue
Block a user