Trying to figure out what is giving the Bad Command error
-
@Dragon said in Trying to figure out what is giving the Bad Command error:
G32 E0 ;Reset Extruder
That looks wrong. I presume it should be: G92 E0
Edit: @Phaedrux already pointed that out.
Can you post your bed.g file too?
-
Thanks, will try that change now.
-
Nope that wasn't it
-
Here is the end Gcode if it could be there:
G0 F9000 X114.795 Y108.649
G1 F1500 X111.208 Y112.237 E0.16875
G1 X110.926 Y112.519
;TIME_ELAPSED:1841.048257
G1 F2700 E-5
M140 S0
M83 ;absolute extrusion mode
M107
G91 ;Relative positionning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positionningG1 X0 Y235 ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bedM84 X Y E ;Disable all steppers but Z
M83 ;relative extrusion mode
M104 S0
;End of Gcode
;SETTING_3 {"global_quality": "[general]\nversion = 4\nname = Standard Quality
;SETTING_3 #3\ndefinition = creality_ender3\n\n[metadata]\nquality_type = s
;SETTING_3 tandard\ntype = quality_changes\n\n[values]\nadhesion_type = skir
;SETTING_3 t\nmaterial_bed_temperature = 65\n\n", "extruder_quality": ["[gene
;SETTING_3 ral]\nversion = 4\nname = Standard Quality #3\ndefinition = creali
;SETTING_3 ty_ender3\n\n[metadata]\nquality_type = standard\nposition = 0\n
;SETTING_3 type = quality_changes\n\n[values]\ninfill_overlap = 10.0\ninfill
;SETTING_3 _pattern = gyroid\ninfill_sparse_density = 10\ninfill_wipe_dist = 0
;SETTING_3 .4\nmaterial_flow = 100\nmaterial_flow_layer_0 = 100\nmaterial_pri
;SETTING_3 nt_temperature = 215\nretraction_hop_enabled = True\nretraction_hop
;SETTING_3 _only_when_collides = True\nskirt_gap = 10\nspeed_wall_0 = 30.0\ns
;SETTING_3 peed_wall_x = 30.0\ntop_bottom_thickness = =layer_height_0+layer_hei
;SETTING_3 ght*3\nwall_0_material_flow = 100\n\n"]} -
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?
-
Here:
It doesn't seem to cause any problems other than driving me nuts not knowing what's causing it.
-
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.