From 265d0b888c17733658961336d3de3d4ba3bf508b Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sat, 16 Mar 2024 00:18:44 +0800 Subject: [PATCH] update adaptive bed mesh wiki for Marlin --- doc/adaptive-bed-mesh.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/adaptive-bed-mesh.md b/doc/adaptive-bed-mesh.md index 7d014aec00c..01e346b1351 100644 --- a/doc/adaptive-bed-mesh.md +++ b/doc/adaptive-bed-mesh.md @@ -28,7 +28,8 @@ The implementation is designed to be straightforward, requiring no additional pl ### Marlin: ``` -G29 X{bed_mesh_probe_count[0]} Y{bed_mesh_probe_count[1]} L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4 +; Marlin don't support speicify the probe count yet, so we only specify the probe area +G29 L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4 ``` ### Klipper: ```