Skip to content

Commit

Permalink
Calibration of X axis ends with parked head
Browse files Browse the repository at this point in the history
BFW-5966
  • Loading branch information
mody committed Aug 29, 2024
1 parent 41f7699 commit f1de0fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/common/selftest/selftest_MK3.5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const AxisConfig_t selftest::Config_XAxis = {
.axis = X_AXIS,
.steps = xy_fr_table_size,
.movement_dir = 1,
.park = false,
.park_pos = 0,
.park = true,
.park_pos = 125, // park in the middle to not hit stuff in enclosure (BFW-5966)
}; // MINI has movement_dir -1

const AxisConfig_t selftest::Config_YAxis = {
Expand Down
4 changes: 2 additions & 2 deletions src/common/selftest/selftest_MK4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ const AxisConfig_t selftest::Config_XAxis = {
.axis = X_AXIS,
.steps = xy_fr_table_size,
.movement_dir = 1,
.park = false,
.park_pos = 0,
.park = true,
.park_pos = 125, // park in the middle to not hit stuff in enclosure (BFW-5966)
}; // MINI has movement_dir -1

const AxisConfig_t selftest::Config_YAxis = {
Expand Down

0 comments on commit f1de0fc

Please sign in to comment.