Crashed with Beta Firmware and BLTouch?
-
hello,
my BLTouch doesn't deployed after i paused and stop a print and started a new print.
This happens the second time.I have a BLTouch V3.1 and a Duet 6HC in SBC Mode with Firmware Duet 3 MB6HC 3.4.0beta7+5 (2022-01-13)
config.g
; Configuration file for Duet WiFi (firmware version 3.3) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Dec 27 2021 17:19:28 GMT+0100 (Mitteleuropäische Normalzeit) ; ======== General preferences ========= M80 C"pson" ; Enable ATX G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"duet3" ; set printer name M669 K1 ; select CoreXY mode ; ======== Network ======== M586 P0 S1 ; enable HTTP M586 P1 S1 ; enable FTP M586 P2 S1 ; enable Telnet ; ======= Drives ======== M569 P0 S0 D3 ; physical drive 0 goes backwards M569 P1 S0 D3 ; physical drive 1 goes backwards M569 P2 S0 ; physical drive 2 goes backwards M569 P3 S0 ; physical drive 3 goes backwards M569 P4 S0 ; physical drive 4 goes backwards M584 X0 Y1 Z2:3 E4 ; set drive mapping M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation M92 X100.00 Y100.00 Z1600.00 E415.00 ; set steps per mm M566 X900.00 Y900.00 Z60.00 E120.00 ; set maximum instantaneous speed changes (mm/min) M203 X20000.00 Y20000.00 Z800.00 E1200.00 ; set maximum speeds (mm/min) M201 X3000.00 Y3000.00 Z200.00 E1000.00 ; set accelerations (mm/s^2) M204 P2000 T3000 ; set Printing and Travel Accelations (mm/s^2) M906 X1500 Y1500 Z1300 E800 I30 ; set motor currents (mA) and motor idle factor in per cent M84 S30 ; Set idle timeout ; ======== Axis Limits ======== M208 X-28 Y-30 Z0 S1 ; set axis minima M208 X336 Y310 Z410 S0 ; set axis maxima ; ======== Endstops ======== M574 X1 S3 ; configure sensorless endstop for low end on X M574 Y1 S3 ; configure sensorless endstop for low end on Y M574 Z1 S2 ; configure Z-probe endstop for low end on Z ; ======== Z-Probe ======== M950 S0 C"io4.out" ; create servo pin 0 for BLTouch M558 P9 C"io4.in" H5 F300 T15000 A3 ; set Z probe type to bltouch and the dive height + speeds G31 P25 X-27.5 Y-21 Z1.959 ; set Z probe trigger value, offset and trigger height M557 X10:285 Y10:285 P7:7 ; define mesh grid ; ======== Independent Z-Leveling ======== M671 X-64.74:364.74 Y150:150 S3 F1 ; define where are the leadscrew ; ======== Heaters ======== M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp M950 H0 C"out0" T0 ; create bed heater output on bedheat and map it to sensor 0 M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit M140 H0 ; map heated bed to heater 0 M143 H0 S120 ; set temperature limit for heater 0 to 120C M308 S1 P"temp1" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 1 as thermistor on pin temp1 M950 H1 C"out1" T1 ; create nozzle heater output on e0heat and map it to sensor 1 M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit M143 H1 S280 ; set temperature limit for heater 1 to 280C ; ======== Fans ======== M950 F0 C"out8" Q500 ; create fan 0 on pin fan0 and set its frequency M106 P0 C"Fan Cooling" S0 H-1 ; set fan 0 name and value. Thermostatic control is turned off M950 F1 C"out7" Q500 ; create fan 1 on pin fan1 and set its frequency M106 P1 C"Fan Hotend" S1 H1 T45 ; set fan 1 name and value. Thermostatic control is turned on ; ======== Tools ======== M563 P0 D0 H1 F0 ; define tool 0 G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C ; ======== Miscellaneous ======== M911 S20 R22 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss T0 ; select first tool ; ======= Machine ======= M950 P2 C"out2" ; define out2 as light M42 P2 S1 ; Switch Light on on StartUp M950 J8 C"^io8.in" ; Map io8.in to Emergency Stop M581 P8 T0 C0 R0 ; Configuring Trigger0 (Emergency Stop) M582 T0 ; Check actual State M575 P1 B57600 S2 ; Settings for Neopixel Communication ; ======== Sensorless Homing ======== M915 X Y S3 R0 F0 ; ======== Acc Sensor ========== ; M955 P0 C"spi.cs3+spi.cs2" I24 ; M593 P"EI3" F65.2 ; use ZVD input shaping to cancel ringing at xx Hz ; ======== Firmware Retraction ========= M207 S0.65 F2400 Z0.0 ; Firmware Retraction ; ======== Settings config-override ======== M501 ; Load settings ; ======== Reset Routines ======== M280 P0 S160 ; Reset BL-Touch
deploy
; deployprobe.g ; called to deploy a physical Z probe ; ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Dec 27 2021 17:19:28 GMT+0100 (Mitteleuropäische Normalzeit) M280 P0 S160 ; Reset BLTouch G4 P100 ; Wait 100ms M280 P0 S10 ; deploy BLTouch G4 P300 ; Wait 100ms M280 P0 S60 ; Touch Switch Mode BLTouch G4 P200 ; Wait 200ms
retract
; retractprobe.g ; called to retract a physical Z probe ; ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Dec 27 2021 17:19:28 GMT+0100 (Mitteleuropäische Normalzeit) M280 P0 S90 ; retract BLTouch
homez.g
; homez.g ; called to home the Z axis ; ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Dec 27 2021 17:19:29 GMT+0100 (Mitteleuropäische Normalzeit) G91 ; relative positioning G1 H2 Z5 F6000 ; lift Z relative to current position G90 ; absolute positioning G1 X177.5 Y171 F6000 ; go to first probe point M401 ; Deploy Probe for Safety --> Workaround for the moment!?1?!?!??!?!?! G30 ; home Z by probing the bed ; Uncomment the following lines to lift Z after probing ;G91 ; relative positioning ;G1 Z5 F100 ; lift Z relative to current position ;G90 ; absolute positioning
Does anyone else have these problem?
-
@davidhyper said in Crashed with Beta Firmware and BLTouch?:
; deployprobe.g ; called to deploy a physical Z probe ; ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Dec 27 2021 17:19:28 GMT+0100 (Mitteleuropäische Normalzeit) M280 P0 S160 ; Reset BLTouch G4 P100 ; Wait 100ms M280 P0 S10 ; deploy BLTouch G4 P300 ; Wait 100ms M280 P0 S60 ; Touch Switch Mode BLTouch G4 P200 ; Wait 200ms
Have you tried with just the deploy command?
When you say crashed in the title, what do you mean?
Can you test with 3.4 beta 7+7?
-
@phaedrux because my bltouch doesn't deploy my nozzle dive into the bed.
I give it a try with the newer beta.
-