Runtime command pinned out! Re-organized coolant pins.
- Pinned out cycle start(A2), feed hold(A1), and reset(A0) runtime commands. These pins are held high with the internal pull-up resistor enabled. All you have to do is connect a normally-open switch to the pin and ground. That's it. - Moved the coolant control pins to A3 (and the optional mist control to A4). - Moved all of the MASK defines into the config.h file to centralize them.
This commit is contained in:
4
report.c
4
report.c
@ -65,7 +65,7 @@ void report_status_message(uint8_t status_code)
|
||||
case STATUS_HARD_LIMIT:
|
||||
printPgmString(PSTR("Limit triggered")); break;
|
||||
case STATUS_SETTING_DISABLED:
|
||||
printPgmString(PSTR("Grbl setting disabled")); break;
|
||||
printPgmString(PSTR("Setting disabled")); break;
|
||||
case STATUS_SETTING_VALUE_NEG:
|
||||
printPgmString(PSTR("Set value must be > 0.0")); break;
|
||||
case STATUS_SETTING_STEP_PULSE_MIN:
|
||||
@ -75,7 +75,7 @@ void report_status_message(uint8_t status_code)
|
||||
case STATUS_HOMING_ERROR:
|
||||
printPgmString(PSTR("Must be idle to home")); break;
|
||||
case STATUS_ABORT_CYCLE:
|
||||
printPgmString(PSTR("Abort during cycle. Position may be lost")); break;
|
||||
printPgmString(PSTR("Abort during cycle. Position maybe lost")); break;
|
||||
case STATUS_PURGE_CYCLE:
|
||||
printPgmString(PSTR("Can't purge buffer during cycle")); break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user