Merge pull request #1790 from jiri-jirus/MK3

y-axis self-test hack cleanup
This commit is contained in:
3d-gussner 2023-09-12 16:31:34 +02:00 committed by GitHub
commit 019126778d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6188,7 +6188,7 @@ static bool lcd_selfcheck_axis_sg(uint8_t axis) {
float max_error_mm = 5;
switch (axis) {
case 0: axis_length = X_MAX_POS; break;
case 1: axis_length = Y_MAX_POS + 8; break;
case 1: axis_length = Y_MAX_POS - Y_MIN_POS + 4; break;
default: axis_length = 210; break;
}