Fix st_get_position_mm
call it, do not index function pointer
This commit is contained in:
parent
48d6ebffd8
commit
33bf363798
1 changed files with 1 additions and 1 deletions
|
@ -9069,7 +9069,7 @@ void print_world_coordinates()
|
||||||
|
|
||||||
void print_physical_coordinates()
|
void print_physical_coordinates()
|
||||||
{
|
{
|
||||||
printf_P(_N("physical coordinates: (%.3f, %.3f, %.3f)\n"), st_get_position_mm[X_AXIS], st_get_position_mm[Y_AXIS], st_get_position_mm[Z_AXIS]);
|
printf_P(_N("physical coordinates: (%.3f, %.3f, %.3f)\n"), st_get_position_mm(X_AXIS), st_get_position_mm(Y_AXIS), st_get_position_mm(Z_AXIS));
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_mesh_bed_leveling_table()
|
void print_mesh_bed_leveling_table()
|
||||||
|
|
Loading…
Reference in a new issue