Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    BLTouch Won't deploy

    Scheduled Pinned Locked Moved
    General Discussion
    5
    28
    2.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • eegroegundefined
      eegroeg @Phaedrux
      last edited by

      @phaedrux Ah well now it is back to no response again... I can confirm nothing is in macros I am using IO_7 🙂

      
      My Printer
      Send code...
      Status
      Idle
      Mode: FFF
      Tool Position
      X
      0.0
      Y
      0.0
      Z
      0.00
      Extruder Drives
      Drive 0
      0.0
      Speeds
      Requested Speed
      0 mm/s
      Top Speed
      0 mm/s
      Sensors
      Vin
      23.9 V
      V12
      12.1 V
      MCU Temperature
      33.6 °C
       Tools
       Extra
       Control Heaters
      Tool	Heater	Current	Active	Standby
      Tool 0
      T0 - Load Filament	Heater 1
      off	21.8 °C	
      0
      0
      Temperature Chart
      System Directory
      0:/sys/config.g
      ; Configuration file for Duet 3 (firmware version 3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.0 on Sun Aug 15 2021 14:13:39 GMT+0100 (British Summer Time)
      
      ; General preferences
      G90                                                   ; send absolute coordinates...
      M83                                                   ; ...but relative extruder moves
      M550 P"My Printer"                                    ; set printer name
      
      ; Network
      M552 P0.0.0.0 S1                                      ; enable network and acquire dynamic address via DHCP
      M586 P0 S1                                            ; enable HTTP
      M586 P1 S0                                            ; disable FTP
      M586 P2 S0                                            ; disable Telnet
      
      ; Drives
      M569 P0.0 S1                                          ; physical drive 0.0 goes forwards
      M569 P0.1 S1                                          ; physical drive 0.1 goes forwards
      M569 P0.2 S1                                          ; physical drive 0.2 goes forwards
      M569 P0.4 S1                                          ; physical drive 0.4 goes forwards
      M584 X0.0 Y0.1 Z0.2:0.3 E0.4                          ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                               ; configure microstepping with interpolation
      M92 X160.00 Y160.00 Z5120.00 E420.00                  ; set steps per mm
      M566 X900.00 Y900.00 Z60.00 E120.00                   ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00               ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00                   ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E800 I30                          ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                               ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                                      ; set axis minima
      M208 X500 Y500 Z750 S0                                ; set axis maxima
      
      ; Endstops
      M574 X1 S1 P"io0.in"                                  ; configure active-high endstop for low end on X via pin io0.in
      M574 Y1 S1 P"io1.in"                                  ; configure active-high endstop for low end on Y via pin io1.in
      M574 Z1 S2 P"io7.in"                                  ; configure Z-probe endstop for low end on Z
      
      ; Z-Probe
      M950 S0 C"io7.out"                                    ; create servo pin 0 for BLTouch
      M558 P9 H4 F120 T6000                      			  ; set Z probe type to bltouch and the dive height + speeds
      G31 P500 X37.5 Y10 Z2.5                               ; set Z probe trigger value, offset and trigger height
      M557 X15:215 Y15:215 S20                              ; define mesh grid
      
      ; Heaters
      ;M308 S0 P"temp0" Y"thermistor" T100000 B4138          ; configure sensor 0 as thermistor on pin temp0
      ;M950 H0 C"out0" T0                                    ; create bed heater output on out0 and map it to sensor 0
      ;M307 H0 B1 S1.00                                      ; enable 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 out1 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"out4" Q500                                  ; create fan 0 on pin out4 and set its frequency
      M106 P0 S0 H-1                                        ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"out5" Q500                                  ; create fan 1 on pin out5 and set its frequency
      M106 P1 S1 H1 T45                                     ; set fan 1 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
      
      ; Custom settings are not defined
      
      ; Miscellaneous
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000"    ; set voltage thresholds and actions to run on power loss
      
      
      
      
      ; deployprobe.g
      ; called to deploy a physical Z probe
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.0 on Sun Aug 15 2021 14:13:39 GMT+0100 (British Summer Time)
      M280 P0 S10 ; deploy BLTouch
      
      
      
      ; retractprobe.g
      ; called to retract a physical Z probe
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.0 on Sun Aug 15 2021 14:13:39 GMT+0100 (British Summer Time)
      M280 P0 S90 ; retract BLTouch
      
      
      

      George

      eegroegundefined 1 Reply Last reply Reply Quote 0
      • eegroegundefined
        eegroeg @eegroeg
        last edited by eegroeg

        @Phaedrux I also am struggling to update it, when I upload the ZIP then run the M115 command after reboot I get...

        	M115
        FIRMWARE_NAME: RepRapFirmware for Duet 3 MB6HC FIRMWARE_VERSION: 3.2.2 ELECTRONICS: Duet 3 MB6HC v1.01 or later FIRMWARE_DATE: 2021-02-11
        

        George

        eegroegundefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
        • eegroegundefined
          eegroeg @eegroeg
          last edited by

          @eegroeg I can confirm BLTouch is now Probing with M280 P0 S10/M280 P0 S90

          George

          1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator
            last edited by

            @eegroeg said in BLTouch Won't deploy:

            M558 P9 H4 F120 T6000

            Your command isn't correct. You're missing the pin name. You need:
            M558 P9 C"^io7.in" H4 F120 T6000

            Change that and send M98 P"config.g" again.

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • Phaedruxundefined
              Phaedrux Moderator @eegroeg
              last edited by

              @eegroeg said in BLTouch Won't deploy:

              @Phaedrux I also am struggling to update it, when I upload the ZIP then run the M115 command after reboot I get...

              	M115
              FIRMWARE_NAME: RepRapFirmware for Duet 3 MB6HC FIRMWARE_VERSION: 3.2.2 ELECTRONICS: Duet 3 MB6HC v1.01 or later FIRMWARE_DATE: 2021-02-11
              

              Where are you uploading it to? Should be the system tab.

              Z-Bot CoreXY Build | Thingiverse Profile

              eegroegundefined 1 Reply Last reply Reply Quote 0
              • eegroegundefined
                eegroeg
                last edited by

                @phaedrux That's great now M401 and M402 work! Thank you 🙂

                George

                1 Reply Last reply Reply Quote 0
                • eegroegundefined
                  eegroeg @Phaedrux
                  last edited by

                  @phaedrux Yeah I am in system tab and hit "upload system files then select the zip files which uploads them but when rebooting and running M115 no change.

                  George

                  1 Reply Last reply Reply Quote 0
                  • Phaedruxundefined
                    Phaedrux Moderator
                    last edited by

                    Are you uploading the zip file as is? Don't extract it first.

                    Z-Bot CoreXY Build | Thingiverse Profile

                    1 Reply Last reply Reply Quote 0
                    • eegroegundefined
                      eegroeg
                      last edited by

                      @phaedrux Yeah I upload the zip as it is from my downloads and it uploads a load of items then restarts and M115 gives me the same output that it is still on M115

                      George

                      1 Reply Last reply Reply Quote 0
                      • Phaedruxundefined
                        Phaedrux Moderator
                        last edited by

                        Try sending m997 in the console

                        Z-Bot CoreXY Build | Thingiverse Profile

                        1 Reply Last reply Reply Quote 0
                        • eegroegundefined
                          eegroeg
                          last edited by

                          @phaedrux said in BLTouch Won't deploy:

                          m997

                          That's done it. Thank you for all your help BLTouch is working now and printer is updated 🙂

                          George

                          1 Reply Last reply Reply Quote 0
                          • Phaedruxundefined
                            Phaedrux Moderator
                            last edited by

                            Can you post the results of M122?
                            Can you check the version of DWC as well?

                            Z-Bot CoreXY Build | Thingiverse Profile

                            1 Reply Last reply Reply Quote 0
                            • eegroegundefined
                              eegroeg
                              last edited by

                              @phaedrux said in BLTouch Won't deploy:

                              M122
                              Sorry for the delay please see my M122 results below. I am on DWC version 3.3.0

                              	M122
                              === Diagnostics ===
                              RepRapFirmware for Duet 3 MB6HC version 3.3 (2021-06-15 21:45:47) running on Duet 3 MB6HC v1.01 or later (standalone mode)
                              Board ID: 08DJM-9P63L-DJMSS-6J9FD-3S86R-TBD39
                              Used output buffers: 3 of 40 (13 max)
                              === RTOS ===
                              Static ram: 150904
                              Dynamic ram: 91676 of which 0 recycled
                              Never used RAM 111612, free system stack 206 words
                              Tasks: NETWORK(ready,30.3%,212) ETHERNET(notifyWait,0.2%,117) HEAT(notifyWait,0.0%,331) Move(notifyWait,0.0%,352) CanReceiv(notifyWait,0.0%,944) CanSender(notifyWait,0.0%,374) CanClock(delaying,0.0%,333) TMC(notifyWait,7.5%,93) MAIN(running,61.5%,1092) IDLE(ready,0.4%,29), total 100.0%
                              Owned mutexes:
                              === Platform ===
                              Last reset 00:00:28 ago, cause: power up
                              Last software reset at 2021-08-31 21:43, reason: User, GCodes spinning, available RAM 108404, slot 0
                              Software reset code 0x0003 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x00400000 BFAR 0x00000000 SP 0x00000000 Task MAIN Freestk 0 n/a
                              Error status: 0x00
                              Step timer max interval 140
                              MCU temperature: min 19.1, current 27.7, max 27.9
                              Supply voltage: min 23.9, current 23.9, max 24.0, under voltage events: 0, over voltage events: 0, power good: yes
                              12V rail voltage: min 12.0, current 12.1, max 12.1, under voltage events: 0
                              Heap OK, handles allocated/used 0/0, heap memory allocated/used/recyclable 0/0/0, gc cycles 0
                              Driver 0: position 0, standstill, reads 25303, writes 14 timeouts 0, SG min/max 0/0
                              Driver 1: position 0, standstill, reads 25303, writes 14 timeouts 0, SG min/max 0/0
                              Driver 2: position 0, standstill, reads 25303, writes 14 timeouts 0, SG min/max 0/0
                              Driver 3: position 0, standstill, reads 25303, writes 14 timeouts 0, SG min/max 0/0
                              Driver 4: position 0, standstill, reads 25303, writes 14 timeouts 0, SG min/max 0/0
                              Driver 5: position 0, standstill, reads 25307, writes 11 timeouts 0, SG min/max 0/0
                              Date/time: 2021-08-31 21:48:07
                              Slowest loop: 7.54ms; fastest: 0.05ms
                              === Storage ===
                              Free file entries: 10
                              SD card 0 detected, interface speed: 25.0MBytes/sec
                              SD card longest read time 2.1ms, write time 0.0ms, max retries 0
                              === Move ===
                              DMs created 125, maxWait 0ms, bed compensation in use: none, comp offset 0.000
                              === MainDDARing ===
                              Scheduled moves 0, completed moves 0, hiccups 0, stepErrors 0, LaErrors 0, Underruns [0, 0, 0], CDDA state -1
                              === AuxDDARing ===
                              Scheduled moves 0, completed moves 0, hiccups 0, stepErrors 0, LaErrors 0, Underruns [0, 0, 0], CDDA state -1
                              === Heat ===
                              Bed heaters = -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1, chamberHeaters = -1 -1 -1 -1
                              === GCodes ===
                              Segments left: 0
                              Movement lock held by null
                              HTTP is idle in state(s) 0
                              Telnet is idle in state(s) 0
                              File is idle in state(s) 0
                              USB is idle in state(s) 0
                              Aux is idle in state(s) 0
                              Trigger is idle in state(s) 0
                              Queue is idle in state(s) 0
                              LCD is idle in state(s) 0
                              SBC is idle in state(s) 0
                              Daemon is idle in state(s) 0
                              Aux2 is idle in state(s) 0
                              Autopause is idle in state(s) 0
                              Code queue is empty.
                              === CAN ===
                              Messages queued 254, received 0, lost 0, longest wait 0ms for reply type 0, peak Tx sync delay 0, free buffers 49 (min 49), ts 142/0/0
                              Tx timeouts 0,0,141,0,0,111 last cancelled message type 30 dest 127
                              
                              === Network ===
                              Slowest loop: 15.23ms; fastest: 0.02ms
                              Responder states: HTTP(0) HTTP(0) HTTP(0) HTTP(0) HTTP(0) HTTP(0) FTP(0) Telnet(0), 0 sessions Telnet(0), 0 sessions
                              HTTP sessions: 2 of 8
                              - Ethernet -
                              State: active
                              Error counts: 0 0 1 0 0
                              Socket states: 5 2 2 2 2 0 0 0
                              

                              George

                              1 Reply Last reply Reply Quote 0
                              • First post
                                Last post
                              Unless otherwise noted, all forum content is licensed under CC-BY-SA