Recv: ! Invalid speed in 'G1 X0 Y0 Z5 F0000' [Fixed]

HI Folks, new to klipper and just tried my first print, it completed ABL and saved the mesh then immediately finished the print, terminal stated Recv: !! Invalid speed in ‘G1 X0 Y0 Z5 F0000’ was the reason but looking at the gcode file that command isn’t anywhere. can anyone help?klippy.log (1.0 MB)
CE5_xyzCalibration_cube.zip (78.4 KB)

Im not sure how but i got it working by removing F40000 from the G29 Macro. and advise is still much appreciated if this is the right fix!

F0000 is actually zero speed. So no speed at all.

Also take care that the z-axis on a not Delta printers usually has to move way slower than the x- and y-axes.
So do not move them in one command.

In the log you posted, your original G29 macro was:

[gcode_macro G29]
gcode = 
	BED_MESH_CALIBRATE
	BED_MESH_PROFILE SAVE=p1
	G1 X0 Y0 Z5 F4000

In a subsequent restart it was changed to:

[gcode_macro G29]
gcode = 
	BED_MESH_CALIBRATE
	BED_MESH_PROFILE SAVE=p1
	G1 X0 Y0 Z5 F0000

F0000 is not a valid speed.