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

    Firmware 2.0RC6 and 1.21.1RC6 released

    Scheduled Pinned Locked Moved
    Firmware installation
    15
    49
    7.7k
    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.
    • daveidmxundefined
      daveidmx
      last edited by daveidmx

      @dc42 There were ~70. Half of those are test macros and related subroutines that maybe shouldn't be in there. (The entry-point macros are in /macros but I didn't want the subroutines to show up on the "macros" DWC UI menu.) The other half are config.g, but factored apart such that reusable parameters were in one place.

      https://github.com/daveidmx/VORON/tree/feature/config/Firmware/DuetWifi/V2/daveidmx

      For example, here are my homex.g and homeall.g, written such that the actual Z-hop moves and X/Y/Z probe moves are in their own files. They are re-usable and only need to be changed in one place.

      ; homex.g
      M98 P"homing_zhop_up.g"
      M98 P"homing_probe_x.g"
      M98 P"homing_zhop_down.g"
      
      ; homeall.g is a slightly optimized XYZ homing script that probes X, Y, and Z together without an intervening Z-hop between each axis
      M98 P"homing_zhop_up.g"
      M98 P"homing_probe_x.g"
      M98 P"homing_probe_y.g"
      M98 P"homing_probe_z.g"
      M98 P"moveto_center_xyz.g"
      

      Maybe these should be shipped off to /macros?

      dc42undefined 1 Reply Last reply Reply Quote 0
      • cgcaferundefined
        cgcafer
        last edited by

        Hi All,
        There was a problem when i use RC6 without any problem. When it printing i changed M566 value from paneldue then error message appeared and printing stopped.
        Old value was M566 X800 Y800
        New value was M566 X1200 Y1200
        0_1528190659996_c4c723c6-507b-46bc-9e9b-3976ef62ce6b-resim.png
        0_1528190688535_18cbb584-e829-48d4-b6af-bf0fb1b1bcfe-resim.png

        and M122 result,
        12:17:52
        M122
        === Diagnostics ===
        RepRapFirmware for Duet 2 WiFi/Ethernet version 2.0(RTOS)RC6 running on Duet WiFi 1.02 or later + DueX2
        Board ID: 08DDM-9FAM2-LW4S8-6JTDG-3SJ6P-1MXBY
        Used output buffers: 1 of 20 (13 max)
        === RTOS ===
        Static ram: 28380
        Dynamic ram: 96516 of which 0 recycled
        Exception stack ram used: 420
        Never used ram: 5756
        Task NETWORK ready, free stack 324
        Task HEAT blocked, free stack 1256
        Task MAIN running, free stack 3560
        === Platform ===
        Last reset 00:39:03 ago, cause: software
        Last software reset time unknown, reason: User, spinning module GCodes, available RAM 5816 bytes (slot 3)
        Software reset code 0x0003 HFSR 0x00000000, CFSR 0x00000000, ICSR 0x0441f000, BFAR 0xe000ed38, SP 0xffffffff
        Error status: 8
        Free file entries: 10
        SD card 0 detected, interface speed: 20.0MBytes/sec
        SD card longest block write time: 32.2ms
        MCU temperature: min 23.5, current 25.6, max 26.3
        Supply voltage: min 0.9, current 24.0, max 24.2, under voltage events: 1, over voltage events: 0
        Driver 0: standstill, SG min/max 365/683
        Driver 1: standstill, SG min/max 0/1023
        Driver 2: standstill, SG min/max 0/616
        Driver 3: standstill, SG min/max 0/1023
        Driver 4: standstill, SG min/max not available
        Driver 5: standstill, SG min/max not available
        Driver 6: standstill, SG min/max not available
        Expansion motor(s) stall indication: no
        Date/time: 2018-06-05 12:17:51
        Slowest loop: 53.39ms; fastest: 0.06ms
        === Move ===
        Hiccups: 0, StepErrors: 0, LaErrors: 0, FreeDm: 240, MinFreeDm 121, MaxWait: 141786ms, Underruns: 0, 0
        Scheduled moves: 0, completed moves: 29
        Bed compensation in use: mesh
        Bed probe heights: 0.000 0.000 0.000 0.000 0.000
        === Heat ===
        Bed heaters = 0 -1 -1 -1, chamberHeaters = -1 -1
        Heater 0 is on, I-accum = 0.0
        Heater 1 is on, I-accum = 0.1
        === GCodes ===
        Segments left: 0
        Stack records: 2 allocated, 0 in use
        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
        serial is idle in state(s) 0
        aux is idle in state(s) 0
        daemon is idle in state(s) 0
        queue is idle in state(s) 0
        autopause is idle in state(s) 0
        Code queue is empty.
        === Network ===
        Slowest loop: 38.73ms; fastest: 0.01ms
        Responder states: HTTP(0) HTTP(0) HTTP(0) HTTP(0) FTP(0) Telnet(0) Telnet(0)
        HTTP sessions: 1 of 8

        • WiFi -
          Network state is running
          WiFi module is connected to access point
          Failed messages: pending 0, notready 0, noresp 0
          WiFi firmware version 1.21
          WiFi MAC address 5c:cf:7f:a4:04:fe
          WiFi Vcc 3.36, reset reason Turned on by main processor
          WiFi flash size 4194304, free heap 15528
          WiFi IP address 10.0.0.25
          WiFi signal strength -58dBm, reconnections 0, sleep mode modem
          Socket states: 0 0 0 0 0 0 0 0
          === Expansion ===
          DueX I2C errors 0
        dc42undefined 1 Reply Last reply Reply Quote 0
        • dc42undefined
          dc42 administrators @daveidmx
          last edited by

          @daveidmx said in Firmware 2.0RC6 and 1.21.1RC6 released:

          @dc42 There were ~70. Half of those are test macros and related subroutines that maybe shouldn't be in there. (The entry-point macros are in /macros but I didn't want the subroutines to show up on the "macros" DWC UI menu.) The other half are config.g, but factored apart such that reusable parameters were in one place.

          https://github.com/daveidmx/VORON/tree/feature/config/Firmware/DuetWifi/V2/daveidmx

          For example, here are my homex.g and homeall.g, written such that the actual Z-hop moves and X/Y/Z probe moves are in their own files. They are re-usable and only need to be changed in one place.

          ; homex.g
          M98 P"homing_zhop_up.g"
          M98 P"homing_probe_x.g"
          M98 P"homing_zhop_down.g"
          
          ; homeall.g is a slightly optimized XYZ homing script that probes X, Y, and Z together without an intervening Z-hop between each axis
          M98 P"homing_zhop_up.g"
          M98 P"homing_probe_x.g"
          M98 P"homing_probe_y.g"
          M98 P"homing_probe_z.g"
          M98 P"moveto_center_xyz.g"
          

          Maybe these should be shipped off to /macros?

          Thanks. I'm hoping to get a fix for the file limit soon, but if not then I'll suggest to Chrishamm that he adds support for subfolders of /sys in DWC, that way you won't have them showing up in subfolders of /macros.

          Duet WiFi hardware designer and firmware engineer
          Please do not ask me for Duet support via PM or email, use the forum
          http://www.escher3d.com, https://miscsolutions.wordpress.com

          1 Reply Last reply Reply Quote 0
          • dc42undefined
            dc42 administrators @cgcafer
            last edited by

            @cgcafer said in Firmware 2.0RC6 and 1.21.1RC6 released:

            Error status: 8

            Thanks for your report. I suspect that it was random that the problem occurred when you sent the M566 command, however if you find that you can reproduce this fault then please let me know.

            What's happened is that accesses to the SD card failed. In older firmware versions, this usually caused the print to stop where it is with the heaters left on. We have one OEM customer who is a very heavy user and has seen this happen occasionally, going back to firmware 1.21 and earlier. In 2.0RC6 the handling of SD card errors has been rewritten so that the print is terminated properly, error messages are sent and the heaters are turned off.

            At this state I am not sure what causes these errors. Perhaps it is just a temporary hardware glitch or an ESD discharge between a stepper motor body and ground. I am considering adding a mechanism to re-initialise the SD card interface and retry the transaction when a SD card read or write error occurs, as long as the card detect switch indicates that the card hasn't been removed.

            Were you able to access the SD card via DWC or PanelDue after the error occurred, without either resetting the Duet or sending M21?

            The error status 8 indicates that output stack overflow occurred at some point. This is not uncommon, especially when using multiple DWC clients.

            Duet WiFi hardware designer and firmware engineer
            Please do not ask me for Duet support via PM or email, use the forum
            http://www.escher3d.com, https://miscsolutions.wordpress.com

            cgcaferundefined 1 Reply Last reply Reply Quote 0
            • dc42undefined
              dc42 administrators @BMMal
              last edited by

              @bmmal said in Firmware 2.0RC6 and 1.21.1RC6 released:

              Error status: 24
              Free file entries: 9
              SD card 0 detected, interface speed: 20.0MBytes/sec
              SD card longest block write time: 762.6ms
              ...
              Slowest loop: 821.33ms; fastest: 0.08ms

              Thanks for your report. I think there was an SD card read error, but for some reason it didn't cause the print to terminate. The Error status 24 indicates that you had output stack overflow (which is not uncommon) and that an SD card transaction took much longer than expected. The SD card longest block write time is also much higher than expected. The Slowest loop time is probably related to that.

              Duet WiFi hardware designer and firmware engineer
              Please do not ask me for Duet support via PM or email, use the forum
              http://www.escher3d.com, https://miscsolutions.wordpress.com

              1 Reply Last reply Reply Quote 0
              • wackyfrogundefined
                wackyfrog
                last edited by

                PanelDue v3.0a 5" FW 1.20(b15) can't connect after update DuetWifi to FW 2.0(RTOS)RC6 (2018-05-29b4), works well until now. PanelDue displays "Connecting...", tried to reset setting. Connected via 4 pin cable.

                dc42undefined 1 Reply Last reply Reply Quote 0
                • dc42undefined
                  dc42 administrators @wackyfrog
                  last edited by

                  @adegtiar said in Firmware 2.0RC6 and 1.21.1RC6 released:

                  PanelDue v3.0a 5" FW 1.20(b15) can't connect after update DuetWifi to FW 2.0(RTOS)RC6 (2018-05-29b4), works well until now. PanelDue displays "Connecting...", tried to reset setting. Connected via 4 pin cable.

                  If you are powering the Duet with 5V power only, that's normal for now. There will be a new PanelDue firmware release in the next few days that supports the new Standby status returned by RRF 2.0.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  wackyfrogundefined 1 Reply Last reply Reply Quote 0
                  • wackyfrogundefined
                    wackyfrog @dc42
                    last edited by wackyfrog

                    If you are powering the Duet with 5V power only, that's normal for now. There will be a new PanelDue firmware release in the next few days that supports the new Standby status returned by RRF 2.0.

                    Yes, using only with 5v.

                    One more thing: when jogging not homed axis I see errors in g-code console:

                    M120
                    G91
                    G1 X-0.1 F3600
                    M121
                    Error: G0/G1: insufficient axes homed
                    Error: Pop(): stack underflow!

                    1 Reply Last reply Reply Quote 0
                    • wackyfrogundefined
                      wackyfrog
                      last edited by

                      This post is deleted!
                      1 Reply Last reply Reply Quote 0
                      • cgcaferundefined
                        cgcafer @dc42
                        last edited by

                        @dc42 said in Firmware 2.0RC6 and 1.21.1RC6 released:

                        Were you able to access the SD card via DWC or PanelDue after the error occurred, without either resetting the Duet or sending M21?

                        I sent M122 from DWC after that shutdown all system so i didn't test it.

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