Skip to content

Commit

Permalink
🎨 Misc. formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 7, 2023
1 parent e7c4a86 commit c3c6432
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/gcode/bedlevel/abl/G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,15 +409,15 @@ G29_TYPE GcodeSuite::G29() {
if (!probe.good_bounds(abl.probe_position_lf, abl.probe_position_rb)) {
if (DEBUGGING(LEVELING)) {
DEBUG_ECHOLNPGM("G29 L", abl.probe_position_lf.x, " R", abl.probe_position_rb.x,
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
}
SERIAL_ECHOLNPGM("? (L,R,F,B) out of bounds.");
G29_RETURN(false, false);
}

// Probe at the points of a lattice grid
abl.gridSpacing.set((abl.probe_position_rb.x - abl.probe_position_lf.x) / (abl.grid_points.x - 1),
(abl.probe_position_rb.y - abl.probe_position_lf.y) / (abl.grid_points.y - 1));
(abl.probe_position_rb.y - abl.probe_position_lf.y) / (abl.grid_points.y - 1));

#endif // ABL_USES_GRID

Expand Down
2 changes: 1 addition & 1 deletion buildroot/share/git/mfadd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ REPO=${INFO[2]}

set -e

echo "Adding and fetching $USER..."
echo "Adding and fetching $USER/$REPO..."
git remote add "$USER" "git@github.com:$USER/$REPO.git" >/dev/null 2>&1 || echo "Remote exists."
git fetch "$USER"

Expand Down

0 comments on commit c3c6432

Please sign in to comment.