Skip to content

Commit

Permalink
Rename MBL repeat param
Browse files Browse the repository at this point in the history
  • Loading branch information
sarusani committed Sep 13, 2023
1 parent 292c1ac commit d3bb6e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Firmware/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2825,7 +2825,7 @@ static void gcode_G80()
nMeasPoints = 3;
}

uint8_t nProbeRetry = code_seen('R') ? code_value_uint8() : eeprom_read_byte((uint8_t*)EEPROM_MBL_PROBE_NR);
uint8_t nProbeRetry = code_seen('C') ? code_value_uint8() : eeprom_read_byte((uint8_t*)EEPROM_MBL_PROBE_NR);
if (nProbeRetry > 10) {
nProbeRetry = 10;
}
Expand Down Expand Up @@ -4882,11 +4882,11 @@ void process_commands()
Default 3x3 grid can be changed on MK2.5/s and MK3/s to 7x7 grid.
#### Usage
G80 [ N | R | L | R | F | B | X | Y | W | H ]
G80 [ N | C | O | L | R | F | B | X | Y | W | H ]
#### Parameters
- `N` - Number of mesh points on x axis. Default is 3. Valid values are 3 and 7.
- `R` - Probe retries. Default 3 max. 10
- `C` - Probe retries. Default 3 max. 10
- `O` - Return to origin. Default 1 (true)
Using the following parameters enables additional "manual" bed leveling correction. Valid values are -100 microns to 100 microns.
Expand Down

0 comments on commit d3bb6e5

Please sign in to comment.