Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. benkue
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 8
    • Best 0
    • Controversial 0
    • Groups 0

    benkue

    @benkue

    0
    Reputation
    1
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    benkue Unfollow Follow

    Latest posts made by benkue

    • RE: missing steps detection while printing does not work

      @t3p3tony
      The printer is homing at the beginning.

      ;DUET2 start-code
      G90               ; Set to Absolute Positioning
      M82               ; Set extruder to absolute mode
      G21               ; Metric values
      G28 
      ...
      ...
      M915 X Y S5 R3 
      M117 Printing...
      

      In which line i turn it off?

      @dc42
      I have an cartesian printer supplied by 24v with 2A 9kg/cm motors. But it seems that the duet will not recognise losing steps while printing. No matter in which situation (fast or low). Is it really enabled ? the last line in start code is M915 X Y S5 R3

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • missing steps detection while printing does not work

      Hi,

      there is an problem with Stall detection while printing however sensorless homing works fine while homing.
      Is it right to define the motor stall detection in start g-code or at the end of config-file.

      Until now it is at the end of my start gcode (and in config.g)
      start-gcode from cura:

      M574 X2 Y1 S3
      M915 X Y S5 R3 
      M117 Printing...
      

      my config.g

      
      M555 P2 ; Set output to look like Marlin
      
      M575 P1 B57600 S1 ; Set auxiliary serial port baud rate and require checksum (for PanelDue)
      
      ; Motor remapping for dual Y
      M584 X0 Y1:4 Z2 E3
      
      ; Disable Heater 2 and remap as Fan
      M307 H2 A-1 C-1 D-1 
      ;M42 P2 S# PWM on that pin, where # is 0.0 - 1.0 or 2 - 255.
      
      
      M569 P0 S1 ; Drive 0 goes forwards (change to S0 to reverse it)
      M569 P1 S0 ; Drive 1 goes backwards 	 Y1
      M569 P2 S0 ; Drive 2 goes forwards	 Z
      M569 P3 S1 ; Drive 3 goes forwards	 E
      M569 P4 S1 ; Drive 4 goes forwards 	 Y2
      
      M350 X16 Y16:16 Z16 E16 I1 ; set 16x microstepping with interpolation
      M574 X1 Y1 Z0 S3         ; set homing switch configuration (Y homing switch only, at low end, active high)
      M906 X850 Y850 Z1200 E800 ; Set motor currents (mA)
      M201 X800 Y800 Z90 E1000 ; Accelerations (mm/s^2)
      M203 X15000 Y15000 Z2000 E3600 ; Maximum speeds (mm/min)
      M566 X600 Y600 Z100 E20 ; Maximum jerk speeds mm/minute
      M208 X340 Y440 Z9999 ; set axis maxima and high homing switch positions (adjust to suit your machine)
      M208 X0 Y0 Z0 S1 ; set axis minima and low homing switch positions (adjust to make X=0 and Y=0 the edges of the bed)
      M92 X100.334 Y89.619:89.619 Z314.9607  ; set axis steps/mm  
      M92 E460.78 ; set extruder steps/mm
      G21 ; Work in millimetres
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves
      
      M305 P0 T100000 B3950 R4700 H0 L0  	; Put your own H and/or L values here to set the bed thermistor ADC correction
      M305 P1 T100000 B4388 R4700 H0 L0 	; Put your own H and/or L values here to set the first nozzle thermistor ADC correction
      M305 P2 T100000 B4388 R4700 H0 L0 	; Put your own H and/or L values here to set the second nozzle thermistor ADC correction
      M143 H0 S270 						; Un-comment this to set maximum extruder temperature, default is 262C
      M141 H3 							; Un-comment this to set chamber heater/thermistor channel
      
      M563 P0 D0 H1 			; tool 0 uses extruder drive 0 and heater 1 
      G10 P0 S0 R0 X0 Y0 		; set tool 0 temperatures and offsets
      
      M915 X Y S5 R3 ; Schrittverluste checken
      
      M556 S100 X0 Y0 Z0 ; Put your axis compensation here
      M912 P0 S0 ; Put your CPU temperature sensor correction here
      M501 ; Run config-override.g
      T0 ; Select the first head
      

      my rehome.g and homeall.g

      M400                  ; make sure everything has stopped before we make changes
      M564 H0 S0
      M574 X2 Y1 S3         ; set endstops to use motor stall
      M913 X50 Y70          ; drop motor currents to 50%
      M915 X Y S5 R0 F0     ; set X and Y to sensitivity 2, do nothing when stall, unfiltered
      G91                   ; use relative positioning
      G1 Y10 F1200          ; lift Z
      
      G1 S1 X700 F3600 ; move right/back 325mm, stopping at the endstop
      G4 P500		
      G1 S1 Y-700 F3600 ; move right/back 325mm, stopping at the endstop
      G4 P500				; wait 500msec
      G1 X-20 Y20            ; move away from end
      M915 X Y S2 R0 F0    ; increase sensitivity
      G1 S1 X400 F3600      ; move right 325mm, stopping at the endstop
      G1 S1 Y-400 F3600      ; move back 325mm, stopping at the endstop
      G1 X-5 Y5            ; move away from end
      
      G4 P500			; wait 500msec
      G92 Z0			; Zero Z manually
      M400                  ; make sure everything has stopped before we reset the motor currents
      G90                   ; back to absolute positioning
      M913 X100 Y100        ; motor currents back to 100%
      M574 X2 Y1 S3         ; define active low microswitches
      M564 H1 S1
      
      posted in Tuning and tweaking
      benkueundefined
      benkue
    • RE: Y baby step insted of Z baby step on display

      has someone compiled it with this settings successfully ?

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • RE: Y baby step insted of Z baby step on display

      Thanks mr. dc42 for your fast feedback.

      I think there is something really wrong with my compiling settings in eclipse:
      0_1556270167818_2019-04-26 11_15_54-Properties for PanelDue.png
      0_1556270172447_2019-04-26 11_15_31-Properties for PanelDue.png
      0_1556270175877_2019-04-26 11_15_21-Properties for PanelDue.png

      and of course there is an objcopy in GNU Tool ARm folder but not on github.
      What should i do ?

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • RE: Y baby step insted of Z baby step on display

      Okay i have compiled the firmware but the result data are no .bin File.
      How can i make the .bin file ?

      1_1556186576861_2019-04-25 12_01_47-PanelDue - PanelDue_Readme.md - Eclipse IDE.png
      compiled Files:
      0_1556186576860_2019-04-25 12_01_29-Release-v3-5.0.png

      gcc builder is active

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • RE: Y baby step insted of Z baby step on display

      @dc42 said in Y baby step insted of Z baby step on display:

      White Knight

      Yes, its the same System like White Knight 3D-Printer.

      I Think i have found it in sourcefile UserInterface.cpp
      0_1556179668123_2019-04-25 10_07_12-PanelDue - PanelDue_src_UserInterface.cpp - Eclipse IDE.png

      I will try to compile it and let you know later if it has worked

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • Y baby step insted of Z baby step on display

      Hello,

      is there an option to chance the axis in the macro ("z baby step") on LCD.

      I use a complete different System for my movements.
      My Z controlls an belt any my X and Y prints on an angle on the Z Belt. So Y would be my Z and the height of an object while printing.

      Thanks and best regards,
      Ben

      posted in Tuning and tweaking
      benkueundefined
      benkue
    • Sensorless Homing with Driver Remapping

      Hi,

      i try to setup sensorless Homing on X and Y but it does not work in negativ homing direction. If i change the homing direction (+) it works fine for X but not four my two Motors on Y an i need Homing in 0 .

      Driver Mapping:
      X on Driver 0
      Y1 on driver 1
      Y2 on driver 4

      I remapped the Drivers in config.g:
      ; * Motor remapping for dual Y
      M584 X0 Y1:4 Z2 E3

      and tested it with the following macro:
      For X: STALL - X.g
      For Y: STALL - Y.g

      Whats wrong ?

      posted in General Discussion
      benkueundefined
      benkue