RRF Update to 3.3 just killed my FW
-
@phaedrux OK... I will rem those lines out.
The messages were as follows:
"Error Tool 0 not found"
"Error: Attempting to Extrude with no tool selected"
There were more but I lost them. -
@phaedrux I remmed out the lines and rebooted.
The PanelDue shows the extruder icon with a Zero next to it(it used to show a "1").
I set the temp and heat it up. I select the Icon button so it's highlighted and I then go to the button to extrude some filament and hit extrude and nothing happens -
Can you add
T0
to the end of your config.g so that the first tool is selected at startup? -
Can you send M98 P"config.g" and post the results?
-
@phaedrux said in RRF Update to 3.3 just killed my FW:
Can you send M98 P"config.g" and post the results?
The T0 on the last line is a good idea. I have that on my TC config. Trying now.Date Event
2/1/2022, 6:51:28 PM M98 P"config.g"
HTTP is enabled on port 80
FTP is disabled
TELNET is disabled -
@phaedrux So it will now extrude on command using the Extrude dialog on the PanelDue. Why it would not manually select IO have no clue, but the highlight on the button went on when selected.
BTW I was able to capture the message that flys by. Turns out it repeats over and over...
"Warning: Obsolete use of S parameter on G1 command. Use H parameter instead"
Looks like a good clue! -
@phaedrux It's not coming from my start gcode as far as I can see...?
"
; ****DuetClone start.gcode ****
G28 ; home all axes
;G29 S1 ; Use the Z offset Mesh Map on the SD card
M140 S[bed0_temperature] ; Heat buildplateG1 X0 Y0 Z10 F9000 ; Move to wait position off table
M190 S[bed0_temperature] ; Stabilize bed temperature
G10 P0 S[extruder0_temperature] R[extruder0_temperature] ; Set tool 0 operating and standby temperatures
M109 S[extruder0_temperature] ; set extruder temp and wait
start of purge line
G1 X40 Y5.5 Z0.2 F600.000 ; Extruder Prime Dry Move
G1 X250 Y5.5 Z0.2 F600.000 E25.000 ; Extruder Prime Start
G92 E0 ; Zero extruders
; **** end of start.gcode **** -
@andy-cohen said in RRF Update to 3.3 just killed my FW:
"Warning: Obsolete use of S parameter on G1 command. Use H parameter instead"
It's your homing files.
-
@phaedrux OK... so I swap out the S with an H?
Seriously... that was changed?
I'm finally printing...
But...
the message seems to be popping up from the G1 commands generated by my slicer; Simplify3D. I do not see anything in S3D's setup which can change that. -
@andy-cohen I might be incorrect on that. The messages have stopped. It could have all come from the homing scripts.
So...
Where else can I expect changes???
This was the "easy" machine to update. I did this update as a "practice" for the update of my Toolchanger. -
@andy-cohen The messages were from the homing scripts.
Just printed a perfect cal cube. Thanks for all your help and especially your patience. I'll be sure to do a shout out to you (well... your online handle at least) on the podcast. Without your help (and the others here) I do not think I would have figured it out. -
The S/H change was to become compatible with laser engraving software which uses G1 S for laser power. Easier to change the homing modifier than try to convince laser software makers to change their gcode.
You can find an example tool changer config for RRF3 here
https://github.com/Duet3D/RRF-machine-config-files/tree/master/E3D_Tool_Changer/dc42-duet3-centreZero-2Titan-2HemeraYou can get a handle on what's changed here: https://duet3d.dozuki.com/Wiki/RepRapFirmware_3_overview
-