Error bed_mesh: min/max points too close together before printing

Basic Information:

Printer Model: FlyingBear Ghost 5
MCU / Printerboard: Mks robin nano 1.2
Host / SBC: Mainsail, Raspberry Pi4B
klippy.log

Hello, today my printer start doing this error “bed_mesh: min/max points too close together” when to make adaptive mesh process with a bltouch probe. before doing that error printer work like a charm, even with smaller object. how can i solve that? many thanks

PS. i’ve already tried to comment [exclude object] in printer.cfg, but without success.
I use Prusaslicer with standard machine g-code

Fill out above information and in all cases attach your klippy.log file (use zip to compress it, if too big). Pasting your printer.cfg is not needed
Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there

Please attach it to your next post.

3 Likes

klippy-3.log (4.3 MB)

klippi.log attached, but i can’t understand how it’s possible

[gcode_macro START_PRINT]
variable_parameter_extruder_temp = 0
variable_parameter_bed_temp = 0
variable_parameter_area_start = 0,0
variable_parameter_area_end = 0,0
gcode = 
	M220 S100
	M221 S100
	G90
	M82
	M190 S{params.BED_TEMP|default(printer.heater_bed.target, true) }
	M109 S{params.EXTRUDER_TEMP|default(printer.extruder.target, true) } T0
	SENSORLESS_HOME
	BED_MESH_CALIBRATE AREA_START={params.AREA_START|default("0,0")} AREA_END={params.AREA_END|default("0,0")}
	BED_MESH_PROFILE REMOVE=default
	BED_MESH_PROFILE REMOVE=Ghost
	BED_MESH_PROFILE SAVE=Ghost
	BED_MESH_PROFILE LOAD=Ghost
	G90
	G0 X0 Y0 Z10 F4000
	
	G92 E0
	G1 X75 Y10 F5000
	G1 Z0.28 F2000
	G1 E4 F500
	G1 X180 E15 F2000
	G1 Y11 F5000
	G1 X75 E30 F2000
	G1 Z2 F2000
	G92 E0

Somehow I assume that there are no parameters for the calibrate area (line 14) and it takes the default parameters for min and max with 0,0 for both.

You may set the default for max to 10,10

I found the mistake, when i imported the bed shape in prusa slicer, I didn’t put the bed measurement. Now it work

2 Likes