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

    Error: Attempting to extrude with no tool selected

    Scheduled Pinned Locked Moved
    General Discussion
    7
    31
    2.8k
    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.
    • A Former User?
      A Former User
      last edited by

      M80 ; Turns on the ATX power supply
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"sgk008" ; set printer name

      ; Network
      M552 S1 ; enable network
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S0 ; disable Telnet

      M669 K1 ; select CoreXY mode

      ; Endstops
      M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
      M574 Y2 S1 P"ystop" ; configure active-high endstop for high end on Y via pin ystop
      M574 Z1 S2 ; configure Z-probe endstop for low end on Z

      M575 P1 S1 B57600 ; Set things up for the PanelDue

      ; Filament sensor
      M591 D0 P1 C"e0stop" S1 ; Set Filament sensor Simple type (High) for extruder drive 0, connected to endstop input 3 (E0

      ; Drives
      M569 P0 S0 ; Drive 0 goes backwards blv: its was S1
      M569 P1 S0 ; Drive 1 goes backwards blv: its was S1
      M569 P2 S0 ; Drive 2 goes forwards
      M569 P3 S1 ; Drive 3 goes backwards WAS 0
      M569 P4 S0 ; Drive 4 goes forwards
      M584 X0 Y1 Z2:4 E3 ; set drive mapping
      M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
      M92 X200 Y200 Z400 E415.178 ; Set steps per mm for Bondtech.
      M566 X600 Y600 Z1000 E200 ; Set maximum instantaneous speed changes (Jerk) (mm/min)
      M203 X20000 Y20000 Z600 E2000 ; Set maximum speeds (mm/min)
      M201 X1000 Y1000 Z100 E5000 ; Set accelerations (mm/s^2)
      M906 X1000 Y1000 Z1000 E1000 I30 ; Set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X-23 Y0 Z0 S1 ; Set axis minima
      M208 X320 Y321 Z350 S0 ; Set axis maxima

      ; Z-Probe

      M558 P1 C"^zprobe.in" H5 F200 T9000 I0 R0.5 ; Set Z probe type mini ir sensor
      G31 P500 X-2 Y-16.4 Z0.310 ; Set Z probe trigger value, offset and trigger height
      M557 X20:270 Y20:270 S240 ; Define mesh grid

      ; Heaters
      M307 H0 R0.277 C337.2 D9.55 S1.00 V23.7 ; Set PID for heated bed values
      M307 H1 R2.105 C132.8 D9.06 S1.00 V23.6 ; Set PID for hotend values
      M308 S0 P"bedtemp" Y"thermistor" A"Bed" T100000 B4725 C0.0000000706 R4700 ; configure sensor 0 as thermistor on pin bedtemp
      M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
      M140 H0 ; map heated bed to heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M308 S1 P"e0temp" Y"thermistor" A"Hotend" T100000 B4725 C0.0000000706 R4700 ; configure sensor 1 as thermistor on pin e0temp
      M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
      M143 H1 S260 ; set temperature limit for heater 0 to 260C
      M308 S2 P"mcu-temp" Y"mcu-temp" A"Duet Board" ; Configure MCU sensor

      ; Tools
      M563 P0 S"T0" D0 H1 F1 ; 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

      ; Access point is configured manually via M587 by the user
      ;M586 P0 S1 ; Enable HTTP
      ;M586 P1 S1 ; Enable FTP
      ;M586 P2 S1 ; Enable Telnet

      ;Hot End fan tool
      M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
      M106 P1 C"HE Fan" S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on 100% at 45deg

      ;Tool Fan/ Layer Fan
      M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S1 H-1 ; set fan 0 value. Thermostatic control is turned off

      ;MB cooling fan layer
      M950 F2 C"fan2" Q500 ; create fan 2 on pin fan2 and set its frequency
      M106 P2 C"MB Fan" S1 H2 T35:55 ; set fan 2 value. Thermostatic control is turned on Temp Range of 35 - 55 deg

      ; Custom settings
      M572 D0 S0.275 ; Set bowden extruder elasticity compensation for E0
      M572 D1 S0.275 ; Set bowden extruder elasticity compensation for E1
      M207 S4.0 F2400 Z0.075 ; Set firmware retraction parameters

      ; Scanner support (debug)
      ;M750

      ; Set up DHT sensor on channels 101-102
      ;M305 P101 X405 S"DHT temperature" T11
      ;M305 P102 X455 S"DHT humidity [%]" T11

      ; Automatic power saving
      M911 S21 R22 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; Set voltage thresholds and actions to run on power loss

      ; Custom settings are not configured
      M564 H0 ; Let the Jog buttons work blv: added to allow jog buttons
      ; Miscellaneous
      M501 ; load saved parameters from non-volatile memory
      T0 ; select first tool

      1 Reply Last reply Reply Quote 1
      • Vetiundefined
        Veti
        last edited by

        @sgk said in Error: Attempting to extrude with no tool selected:

        M575 P1 S1 B57600 ; Set things up for the PanelDue

        try disconnecting the paneldue.

        also post the output of M98 P"config.g"

        1 Reply Last reply Reply Quote 0
        • A Former User?
          A Former User
          last edited by

          @Veti said in Error: Attempting to extrude with no tool selected:

          M98 P "config.g"

          12:47:21M98 P"config.g"
          HTTP is enabled on port 80
          FTP is disabled
          TELNET is disabled
          Error: Invalid extruder number '1'
          Warning: Macro file config-override.g not found
          12:47:15Message Log cleared!

          1 Reply Last reply Reply Quote 0
          • Vetiundefined
            Veti
            last edited by

            @sgk said in Error: Attempting to extrude with no tool selected:

            Error: Invalid extruder number '1'
            M572 D1 S0.275 ; Set bowden extruder elasticity compensation for E1

            i think it might be that statement

            1 Reply Last reply Reply Quote 0
            • A Former User?
              A Former User
              last edited by

              I must put 0
              M572 D0 S0.275; Définir la compensation d'élasticité d'extrudeuse Bowden pour E1

              1 Reply Last reply Reply Quote 0
              • Vetiundefined
                Veti
                last edited by

                you already have a line like that in your config

                A Former User? 1 Reply Last reply Reply Quote 0
                • A Former User?
                  A Former User @Veti
                  last edited by

                  @Veti oh yes
                  I understood I have a double line
                  thank you very much

                  1 Reply Last reply Reply Quote 0
                  • A Former User?
                    A Former User
                    last edited by

                    I still have the same error

                    14:29:50Error: Attempting to extrude with no tool selected.
                    14:29:46Error: Attempting to extrude with no tool selected.
                    14:29:42Error: Attempting to extrude with no tool selected.
                    14:29:38Error: Attempting to extrude with no tool selected.

                    engikeneerundefined 1 Reply Last reply Reply Quote 0
                    • engikeneerundefined
                      engikeneer @A Former User
                      last edited by

                      @sgk post the gcode file you're printing with. My guess is that you have a rogue T-1 or T1 command in there.

                      Did you also try Veti's suggestion of disconnecting the Panel Due? I've seen before where interference in the wires to the Panel Due corrupts the data flow and gives similar issues.

                      E3D TC with D3Mini and Toolboards.
                      Home-built CoreXY, Duet Wifi, Chimera direct drive, 2x BMG, 300x300x300 build volume
                      i3 clone with a bunch of mods

                      A Former User? 1 Reply Last reply Reply Quote 0
                      • A Former User?
                        A Former User @engikeneer
                        last edited by

                        @engikeneer ecrou poupee gbb.stl

                        1 Reply Last reply Reply Quote 0
                        • A Former User?
                          A Former User
                          last edited by A Former User

                          it does it to me since the update of 2.03 2.05 3.0 3.1 3.2

                          with all files from all slicers

                          engikeneerundefined 1 Reply Last reply Reply Quote 0
                          • engikeneerundefined
                            engikeneer @A Former User
                            last edited by

                            @sgk upload the sliced gcode file, not the stl.

                            Did you try disconnecting the panel due?

                            E3D TC with D3Mini and Toolboards.
                            Home-built CoreXY, Duet Wifi, Chimera direct drive, 2x BMG, 300x300x300 build volume
                            i3 clone with a bunch of mods

                            1 Reply Last reply Reply Quote 0
                            • A Former User?
                              A Former User
                              last edited by

                              yes the same

                              1 Reply Last reply Reply Quote 0
                              • A Former User?
                                A Former User
                                last edited by

                                it's crazy since I was in 3.2 I have this problem

                                droftartsundefined 1 Reply Last reply Reply Quote 0
                                • Vetiundefined
                                  Veti
                                  last edited by

                                  did you disconnect the paneldue?

                                  1 Reply Last reply Reply Quote 0
                                  • engikeneerundefined
                                    engikeneer
                                    last edited by

                                    @Phaedrux or @T3P3Tony (or one of the other moderators), it seems @sgk has been blocked from posting (getting flagged as spam by Akismet.com). Can you help with this please? 🙂

                                    E3D TC with D3Mini and Toolboards.
                                    Home-built CoreXY, Duet Wifi, Chimera direct drive, 2x BMG, 300x300x300 build volume
                                    i3 clone with a bunch of mods

                                    T3P3Tonyundefined 1 Reply Last reply Reply Quote 0
                                    • T3P3Tonyundefined
                                      T3P3Tony administrators @engikeneer
                                      last edited by

                                      @engikeneer thanks for the heads up. this is the first time i have seen it with someone who is already posting successfully. Akismet is a bit of a black box, can you ask him to email info@duet3d.com and we can try and trouble shoot through this.

                                      www.duet3d.com

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

                                        @sgk You must post the sliced gcode file so we can see what the slicer is adding.

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        1 Reply Last reply Reply Quote 0
                                        • Thaliosundefined
                                          Thalios
                                          last edited by

                                          Do you have something defined in config-override.g concerning tools?

                                          Might be weird, but did you try to remove the tool label S"T0" in M563?

                                          Mine is like this:

                                          ; Tools
                                          M563 P0 D0 H1 F1                                   ; define tool 0
                                          G10 P0 R0 S0                                       ; set initial tool 0 active and standby temperatures to 0C
                                          

                                          Railcore II 300ZL with lots of upgrades (Duet 3 6HC)
                                          Heavily modified Ender 3 Pro (Duet 3 6HC)
                                          Heavily modified Tronxy X5SA-500 Pro with Chimera+ and dual bondtech (Duet 3 6HC)
                                          CR-10S Pro V2 (Duet 3 Mini 5+)
                                          and a bunch of SLA printers..

                                          1 Reply Last reply Reply Quote 0
                                          • droftartsundefined
                                            droftarts administrators @A Former User
                                            last edited by

                                            @sgk Try moving the 'Tool' section of your config.g to after the fan definitions. At the moment it is defining the tool with a fan (F1, which is the thermostatic hot end fan, so I think it should be F0, the tool fan) before the fan has been defined. This wasn't a problem in the old version of the firmware, as fans were defined by default, but in RRF3 there are no default definitions.

                                            Ian

                                            Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

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