Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed cycle start and feed hold I2C key characters #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions keypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ static void keypad_process_keypress (sys_state_t state)
enqueue_coolant_override(CMD_OVERRIDE_COOLANT_FLOOD_TOGGLE);
break;

case CMD_FEED_HOLD_LEGACY: // Feed hold
case CMD_FEED_HOLD : // Feed hold
grbl.enqueue_realtime_command(CMD_FEED_HOLD);
break;

case CMD_CYCLE_START_LEGACY: // Cycle start
case CMD_CYCLE_START : // Cycle start Legacy '~' is 0x7E, same as macro function
grbl.enqueue_realtime_command(CMD_CYCLE_START);
break;

Expand Down