@dc42 said in QOI image from PS 2.6.0-a4 aborts print on RRF 3.5.0b2:
Have you already posted your start.g in this thread? If not, please do so.
Here you go:
; start.g v1.3
; Called whenever you start a print, run before slicer gcode at start of print
echo "start.g start"
G21 ; Set units to millimeters
G90 ; Use absolute coordinates
M83 ; Use relative distances for extrusion
M140 S65 ; Set bed temperature to 65°C
if exists(global.sb_leds)
set global.sb_leds = "heating" ; StealthBurner LED status
T0 ; Select Tool 0
M291 P"Print started, preheating." T10 ; Info message
G4 S1 ; Wait 1 second
M220 S100 ; Reset speed factor
M221 S100 ; Reset extrusion factor
M290 R0 S0 ; Reset baby stepping
M107 ; Turn off the part cooling fan
if heat.heaters[0].current < 65
M140 S65 ; Set bed temperature to 65°C
M116 H0 ; Wait for the bed to reach its temperature
echo "start.g end