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

    SD Card corruption again, again

    Scheduled Pinned Locked Moved
    General Discussion
    10
    33
    1.4k
    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.
    • arhiundefined
      arhi @Veti
      last edited by

      @Veti said in SD Card corruption again, again:

      @arhi

      what does an ups have to do with logging?

      I don't see any other reason to have logging "always-on" except if you want to have data to continue after power loss. This is better solved by UPS. For any other reason, it would make sense to log from time to time to check issues if you have them, but not always.

      32G is a big card, you are probably writing over and over the same place if they are getting worn out quickly (many will lock the card for writing into read-only mode when they encounter write issues and cant remap the blocks any more, many will not fail on writes but silently ignore them). Possible solution would be to either never delete log files and only create new ones or always append to a log file and not truncate it ever. I have no clue how M929 actually work, never had a need for it, I have enough issues with crappy SD cards to force them to take the logging data too... tried many years ago with marling and gave up after few dead cards

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

        @arhi

        powerloss recovery is M911 and not debugging.
        those are two different things.

        arhiundefined 1 Reply Last reply Reply Quote 0
        • arhiundefined
          arhi @Veti
          last edited by

          @Veti yes, my mistake, you are only logging basic stuff (Start, stop ..) that should not eat up the SD card, not enough "traffic" ..

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

            i think it logs every move. so its a lot

            gnydickundefined 1 Reply Last reply Reply Quote 0
            • gnydickundefined
              gnydick @Veti
              last edited by

              @Veti it does not log every move. that would be silly.

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

                What level of logging are you using? What is the command used?

                Z-Bot CoreXY Build | Thingiverse Profile

                gnydickundefined 1 Reply Last reply Reply Quote 0
                • gnydickundefined
                  gnydick @Phaedrux
                  last edited by

                  @Phaedrux
                  M929 P"eventlog.txt" S1

                  1 Reply Last reply Reply Quote 0
                  • jrocklandundefined
                    jrockland
                    last edited by

                    The problem doesnt come from the boards.
                    I use multiple duet3d boards with all kind of sd cards and never had that issue.
                    You might have fakes from amazon/ebay: They look 100% like the real one but are 8g instead of 32g, and as the board think they are 32g it keep writing and destroy the card.

                    I even once bough a fake from walmart. No joke. It is hard to find good stuff now.

                    gnydickundefined 1 Reply Last reply Reply Quote 0
                    • gnydickundefined
                      gnydick @jrockland
                      last edited by

                      @jrockland i don't think < 1GB would do that.

                      jrocklandundefined 1 Reply Last reply Reply Quote 0
                      • jrocklandundefined
                        jrockland @gnydick
                        last edited by

                        @gnydick depend how many projects you have on those cards.. my cards usually run around 12+ g when I back them up. But im running a ton of high def projects..

                        jrocklandundefined gnydickundefined 2 Replies Last reply Reply Quote 0
                        • jrocklandundefined
                          jrockland @jrockland
                          last edited by

                          @jrockland **those where from when I was running with attach rasp boards..
                          Probably much smaller now.

                          1 Reply Last reply Reply Quote 0
                          • gnydickundefined
                            gnydick @jrockland
                            last edited by

                            @jrockland exactly, i had just emptied my card recently.

                            jrocklandundefined 1 Reply Last reply Reply Quote 0
                            • jrocklandundefined
                              jrockland @gnydick
                              last edited by

                              @gnydick I creat/test/bench printers parts, so when I want them to go trough a 72hrs+ hardcore run you should see the size of the gcode files..... even just a "circle" with 4096 sides is impressive.

                              gnydickundefined 1 Reply Last reply Reply Quote 0
                              • gnydickundefined
                                gnydick @jrockland
                                last edited by

                                @jrockland believe me, I understand. I regularly delete my files because it's too much to scroll through on the paneldue.

                                1 Reply Last reply Reply Quote 0
                                • o_lampeundefined
                                  o_lampe
                                  last edited by o_lampe

                                  I can add my findings about counterfeit SanDisk SD-cards. Not related to size (8GB vs. 32GB) but related to write speed. Some of the cheaper cards I wrote (Linux) images to with Balena Etcher showed a much slower write speed.

                                  There is another thing, I saw in Linux world, which might come handy for Duet3D too:
                                  Most SSD-drives have a write-wear protection that randomly uses different areas in the memory-address room. Someone in the RasPi-world has implemented that feature for SD-Cards, too.
                                  @chrishamm (hint, hint) sorry to bother you again 🙂

                                  Especially when you regularly delete files, that would be helpful, since otherwise, the logging would take place at the same memory-addresses over and over again.

                                  chrishammundefined 1 Reply Last reply Reply Quote 1
                                  • chrishammundefined
                                    chrishamm administrators @o_lampe
                                    last edited by

                                    @o_lampe Newer SD cards have an embedded controller that ensures data isn't always written to the same physical location (like modern SSDs). For IO-intense purposes it's probably a good idea to replace the standard SD cards with A1/A2-certified cards. I generally use a SanDisk A2 card for DuetPi tests, especially because of the speed advantage compared to other cards.

                                    For quite some time ext4 (the FS used by Raspberry Pi OS and DuetPi) has enabled trim support automatically on supported platforms but I must admit I am not 100% sure if that particular feature is available with SD cards.

                                    Duet software engineer

                                    o_lampeundefined gnydickundefined 2 Replies Last reply Reply Quote 0
                                    • o_lampeundefined
                                      o_lampe @chrishamm
                                      last edited by

                                      @chrishamm said in SD Card corruption again, again:

                                      trim support

                                      That was the term, I was looking for. IIRC someone implemented it for SD-cards, too. Now with the right term to look for, I'll find it back. Although it might not be needed for newer cards.

                                      Thanks again Chris

                                      1 Reply Last reply Reply Quote 0
                                      • gnydickundefined
                                        gnydick @chrishamm
                                        last edited by

                                        @chrishamm even without TRIM, they still do write-leveling, which is what you're referring to.

                                        1 Reply Last reply Reply Quote 0
                                        • DekJakundefined
                                          DekJak
                                          last edited by

                                          This post is deleted!
                                          1 Reply Last reply Reply Quote 0
                                          • DekJakundefined
                                            DekJak
                                            last edited by

                                            Hi, I just had this problem too.
                                            I used the printer a couple of weeks ago without problem.
                                            Today, when I turned the machine on there are no files on the SD card.
                                            I don't log to the SD
                                            The SD card is the one that was supplied with the duet.

                                            What's the best way to recover from this?

                                            Best
                                            DerekJ

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