Skip to content

Commit

Permalink
Output G90 in GCode init. #428
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoffland committed Sep 17, 2024
1 parent d5ef109 commit e017234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gcode/machine/GCodeMachine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void GCodeMachine::beginLine() {
void GCodeMachine::start() {
MachineAdapter::start();
axisSeen = 0;
*stream << (units == Units::METRIC ? "G21" : "G20") << '\n';
*stream << (units == Units::METRIC ? "G21" : "G20") << "G90\n";
// TODO set other GCode state
}

Expand Down

0 comments on commit e017234

Please sign in to comment.