Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.33 KB | None | 0 0
  1. #define X_BED_SIZE 212
  2. #define Y_BED_SIZE 295
  3. #define NOZZLE_TO_PROBE_OFFSET { 50, 10, 0 }
  4. #define MIN_PROBE_EDGE 10
  5.  
  6. #define Z_STEPPER_AUTO_ALIGN
  7. #if ENABLED(Z_STEPPER_AUTO_ALIGN)
  8.   // Define probe X and Y positions for Z1, Z2 [, Z3 [, Z4]]
  9.   // If not defined, probe limits will be used.
  10.   // Override with 'M422 S<index> X<pos> Y<pos>'
  11.   #define Z_STEPPER_ALIGN_XY { { 60, 150 }, { 200, 270 }, { 200, 20 } }
  12.  
  13. SENDING:G34
  14. >>> G34
  15. Machine Type: Core
  16. Probe: FIX_MOUNTED_PROBE
  17. Probe Offset X50.00 Y10.00 Z0.00 (Right-Back & Same Z as Nozzle)
  18. > probing all positions.
  19. ITERATION: 1
  20. >>> do_blocking_move_to X150.00 Y260.00 Z25.12
  21. <<< do_blocking_move_to
  22. echo:busy: processing
  23. Probing X60.00 Y150.00
  24. >>> Probe::probe_at_point(60.00, 150.00, raise, 0, probe_relative)
  25.   current_position= X150.00 Y260.00 Z25.12 :
  26. >>> do_blocking_move_to X10.00 Y140.00 Z25.12
  27. <<< do_blocking_move_to
  28. echo:busy: processing
  29.   current_position= X10.00 Y140.00 Z25.12 : Probe::set_deployed
  30. deploy: 1
  31. Probe::move_z(10.00)
  32. >>> do_blocking_move_to X10.00 Y140.00 Z25.12
  33. <<< do_blocking_move_to
  34.   current_position= X10.00 Y140.00 Z25.12 : >>> Probe::run_z_probe
  35.   current_position= X10.00 Y140.00 Z25.12 : >>> Probe::probe_down_to_z
  36. >>> do_blocking_move_to X10.00 Y140.00 Z15.00
  37. <<< do_blocking_move_to
  38. echo:busy: processing
  39.   current_position= X10.00 Y140.00 Z15.00 : sync_plan_position
  40.   current_position= X10.00 Y140.00 Z15.00 : <<< Probe::probe_down_to_z
  41.   current_position= X10.00 Y140.00 Z15.00 : >>> Probe::probe_down_to_z
  42. >>> do_blocking_move_to X10.00 Y140.00 Z-2.00
  43. <<< do_blocking_move_to
  44. echo:busy: processing
  45.   current_position= X10.00 Y140.00 Z1.34 : sync_plan_position
  46.   current_position= X10.00 Y140.00 Z1.34 : <<< Probe::probe_down_to_z
  47.   current_position= X10.00 Y140.00 Z1.34 : <<< run_z_probe
  48. >>> do_blocking_move_to X10.00 Y140.00 Z6.34
  49. <<< do_blocking_move_to
  50. echo:busy: processing
  51. <<< Probe::probe_at_point
  52. > Z1 measured position is 6.34
  53. >>> do_blocking_move_to X10.00 Y140.00 Z25.12
  54. <<< do_blocking_move_to
  55. echo:busy: processing
  56. Probing X200.00 Y270.00
  57. >>> Probe::probe_at_point(200.00, 270.00, raise, 0, probe_relative)
  58.   current_position= X10.00 Y140.00 Z25.12 :
  59. >>> do_blocking_move_to X150.00 Y260.00 Z25.12
  60. <<< do_blocking_move_to
  61. echo:busy: processing
  62.   current_position= X150.00 Y260.00 Z25.12 : Probe::set_deployed
  63. deploy: 1
  64.   current_position= X150.00 Y260.00 Z25.12 : >>> Probe::run_z_probe
  65.   current_position= X150.00 Y260.00 Z25.12 : >>> Probe::probe_down_to_z
  66. >>> do_blocking_move_to X150.00 Y260.00 Z15.00
  67. <<< do_blocking_move_to
  68. echo:busy: processing
  69.   current_position= X150.00 Y260.00 Z15.00 : sync_plan_position
  70.   current_position= X150.00 Y260.00 Z15.00 : <<< Probe::probe_down_to_z
  71.   current_position= X150.00 Y260.00 Z15.00 : >>> Probe::probe_down_to_z
  72. >>> do_blocking_move_to X150.00 Y260.00 Z-2.00
  73. <<< do_blocking_move_to
  74. echo:busy: processing
  75.   current_position= X150.00 Y260.00 Z3.34 : sync_plan_position
  76.   current_position= X150.00 Y260.00 Z3.34 : <<< Probe::probe_down_to_z
  77. SLOW Probe fail!
  78.   current_position= X150.00 Y260.00 Z3.34 : <<< run_z_probe
  79.   current_position= X150.00 Y260.00 Z3.34 : Probe::set_deployed
  80. deploy: 0
  81. >>> do_blocking_move_to X150.00 Y260.00 Z3.34
  82. <<< do_blocking_move_to
  83. Error:Probing Failed
  84. [ERROR] Error:Probing Failed
  85.  
  86. <<< Probe::probe_at_point
  87. Probing failed.
  88. G34 aborted.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement