Trying to figure out what is giving the Bad Command error
-
Bed file:
; bed.g
; called to perform automatic bed compensation via G32
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 26 2020 00:51:15 GMT-0700 (Pacific Daylight Time)
;M561 ; clear any bed transform
G30 X20 Y20
G29 S1 ; probe the bed and enable compensation; bed.g file for RepRapFirmware, generated by Escher3D calculator
; 16 points, 6 factors, probing radius: 115, probe offset (-42, -12)
;M98 Pdeployprobe.g
;G30 P0 X0.00 Y115.00 Z-99999 H0
;G30 P1 X57.50 Y99.59 Z-99999 H0
;G30 P2 X99.59 Y57.50 Z-99999 H0
;G30 P3 X115.00 Y0.00 Z-99999 H0
;G30 P4 X99.59 Y-57.50 Z-99999 H0
;G30 P5 X57.50 Y-99.59 Z-99999 H0
;G30 P6 X0.00 Y-98.87 Z-99999 H0
;G30 P7 X-44.23 Y-76.60 Z-99999 H0
;G30 P8 X-72.61 Y-41.92 Z-99999 H0
;G30 P9 X-83.99 Y-0.00 Z-99999 H0
;G30 P10 X-77.01 Y44.46 Z-99999 H0
;G30 P11 X-49.88 Y86.40 Z-99999 H0
;G30 P12 X0.00 Y53.39 Z-99999 H0
;G30 P13 X49.80 Y-28.75 Z-99999 H0
;G30 P14 X-28.51 Y-16.46 Z-99999 H0
;G30 P15 X0 Y0 Z-99999 S6
;M98 Pretractprobe.gAgain this only happens with files from Cura files from Prusa Slicer don't give the error.
-
@Phaedrux said in Trying to figure out what is giving the Bad Command error:
Can you upload the file itself so we could check it in a text editor?
Another thing you can try is to send each command copy and pasted from the file in the gcode console and see if any give an error.
M572 S0.000000
Maybe try fewer zeroes?
I have tried commenting that line out and it did not fix the error.
-
Upload the homeall. and bed.g as well.
-
M104 S215 T0 ; start preheating hotend
I don't think M104 takes a T parameter, but I don't think it would complain about it...
-
Bed is above here is home:
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 26 2020 00:51:15 GMT-0700 (Pacific Daylight Time)
G91 ; relative positioning
G1 H2 Z5 F6000 ; lift Z relative to current position
G1 H1 X-240 Y-240 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F6000 ; go back a few mm
G1 H1 X-240 Y-240 F360 ; move slowly to X and Y axis endstops once more (second pass)
G90 ; absolute positioning
G1 X117 Y117 F6000 ; go to first bed probe point and home Z
G30 ; home Z by probing the bed
G29 S1; Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z5 F100 ; lift Z relative to current position
;G90 ; absolute positioning -
I meant the actual file so we can check for bogus characters.
-
-
@Phaedrux said in Trying to figure out what is giving the Bad Command error:
M104 S215 T0 ; start preheating hotend
I don't think M104 takes a T parameter, but I don't think it would complain about it...
Were you able to test this one?
-
Do you get the Bad Command error just once, or multiple times during the print? If it's multiple times then we probably need to see the whole file.
-
@Dragon said in Trying to figure out what is giving the Bad Command error:
Here:
It doesn't seem to cause any problems other than driving me nuts not knowing what's causing it.
@dc42 There's the whole file.
-
HxD revealed that yout GCode file has some non-printing characters in it at the start of what appears to be a blank line when viewed in a standard text editor. It's the line after "M109 S205 T0 ; heat to Cura Hotend". Possibly this was in your slicer start script?
PS - there are some more earlier in the file, the EF BB BF sequence. Neither of them is a valid UTF-8 character sequence.
-
Are you using the Cura plugin to upload the gcode file directly to the printer or are you uploading via the DWC?
What version of DWC are you using?
-
OK, Thanks! I believe that was it. It would only pop up once when starting but didn't affect the print.
Thanks everyone for the help!
Cheers.