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

    Compiling/Building PanelDue Firmware

    Scheduled Pinned Locked Moved Solved
    PanelDue
    5
    30
    1.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.
    • dc42undefined
      dc42 administrators @R006
      last edited by

      @R006 which version of RRFLibraries do you have in your workspace?

      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

      R006undefined 1 Reply Last reply Reply Quote 0
      • R006undefined
        R006 @dc42
        last edited by

        @dc42 RRFLibraries 3.4.4 version

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

          @R006 I have PanelDueFirmware master and RRFLibraries master in my PanelDue build workspace, and it builds for me. It sounds to me that you may be using RRFLibraries 3.4-dev branch.

          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

          R006undefined 1 Reply Last reply Reply Quote 0
          • R006undefined
            R006 @dc42
            last edited by R006

            @dc42 hi, sorry for late reply.
            i am build panel FM as per you mentioned but when i am flashing it's paneldue screen was blank.

            and getting this error:Generating binary
            "/arm-none-eabi-objcopy" -O binary "C:\Users\rishita.butala\eclipse-workspace\Firmware\PanelDueFirmware\Release-7.0/PanelDueFirmware-v2-7.0.elf" "C:\Users\rishita.butala\eclipse-workspace\Firmware\PanelDueFirmware\Release-7.0/PanelDueFirmware-v2-7.0.bin" && cat "C:/Users/rishita.butala/eclipse-workspace/Firmware/PanelDueFirmware/Release-7.0/PanelDueFirmware-v2-7.0.bin" "C:/Users/rishita.butala/eclipse-workspace/Firmware/PanelDueFirmware/SplashScreens/SplashScreen-Duet3D-800x480.bin" >"C:/Users/rishita.butala/eclipse-workspace/Firmware/PanelDueFirmware/Release-7.0/PanelDueFirmware-v2-7.0-logo.bin"
            c:/program files (x86)/gnu arm embedded toolchain/10 2020-q4-major/bin/sh: /arm-none-eabi-objcopy: not found
            makefile:101: recipe for target 'post-build' failed
            make[1]: [post-build] Error 127 (ignored)

            but i am go through this topic:https://forum.duet3d.com/topic/22876/solved-paneldue-firmware-compile-error/10
            and try to generating .bin file so .bin file was generated. but it's blank.

            i am waiting for your reply @dc42
            Any Suggestions? @jay_s_uk

            R006undefined 1 Reply Last reply Reply Quote 0
            • R006undefined
              R006 @R006
              last edited by

              @dc42 i am waiting for your reply

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

                @R006 looks like you haven't defined variable ArmGccPath in Window->Preferences->C/C++->Build->Build Variables. It need to be defined as the path to the folder where the C++ compiler and related tools (including arm-none-eabi-objcopy) live. This is what mine is set to, although a more recent version of the compiler than that should also work.

                4c5fdbf3-b61a-431d-a99b-f3a17fea849a-image.png

                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

                R006undefined 1 Reply Last reply Reply Quote 0
                • R006undefined
                  R006 @dc42
                  last edited by

                  @dc42 it's already defined.

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

                    @R006 fba1f389-b9cf-400f-ae34-0c4bd3bb4c93-image.png

                    If you look at the Command box in the above image, you can see that it tries to invoke "${ArmGccPath}/arm-none-eabi-objcopy". As it's trying to invoke"/arm-none-eabi-objcopy" according to the error message you posted, there must be something wrong with your definition of that build variable, or else the post build step command line in your system doesn't match mine.

                    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

                    R006undefined 1 Reply Last reply Reply Quote 0
                    • R006undefined
                      R006 @dc42
                      last edited by

                      @dc42
                      Post-build steps in my eclipse.
                      "${ArmGccPath}/arm-none-eabi-objcopy" -O binary "${workspace_loc:/${ProjName}/${ConfigName}}/${BuildArtifactFileBaseName}.elf" "${workspace_loc:/${ProjName}/${ConfigName}}/${BuildArtifactFileBaseName}.bin" && cat "${ProjDirPath}/${ConfigName}/${BuildArtifactFileBaseName}.bin" "${ProjDirPath}/SplashScreens/SplashScreen-Duet3D-800x480.bin" >"${ProjDirPath}/${ConfigName}/${BuildArtifactFileBaseName}-logo.bin"

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

                        @R006 and how have you set ArmGccPath ?

                        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

                        R006undefined 1 Reply Last reply Reply Quote 1
                        • R006undefined
                          R006 @dc42
                          last edited by

                          @dc42 ArmGccPath is C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2020-q4-major\bin

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

                            @R006 and is file arm-none-eabi-objcopy.exe in that folder?

                            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

                            R006undefined 1 Reply Last reply Reply Quote 0
                            • R006undefined
                              R006 @dc42
                              last edited by R006

                              @dc42 yes
                              but as per error c:/program files (x86)/gnu arm embedded toolchain/10 2020-q4-major/bin/sh: /arm-none-eabi-objcopy: not found may be it's search in sh folder

                              R006undefined oliofundefined 2 Replies Last reply Reply Quote 0
                              • R006undefined
                                R006 @R006
                                last edited by

                                This post is deleted!
                                1 Reply Last reply Reply Quote 0
                                • oliofundefined
                                  oliof @R006
                                  last edited by oliof

                                  @R006 remove /sh from the path

                                  <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                  R006undefined 1 Reply Last reply Reply Quote 0
                                  • R006undefined
                                    R006 @oliof
                                    last edited by R006

                                    @dc42 thank you for support .
                                    now i am able to build it. and generating PanelDueFirmware.bin file successfully by changing the name of ArmGccPath.

                                    but after flashing successfully & restart panel, it was blank.

                                    Any Suggestions?@chrishamm

                                    R006undefined 1 Reply Last reply Reply Quote 0
                                    • R006undefined
                                      R006 @R006
                                      last edited by R006

                                      @dc42 @chrishamm can any one try my build bin file of panelduefirmware & Check what's wrong in that file & check in your panel if it's working or not.
                                      Firmware varsion:3.4.beta3
                                      souce code of panel:https://github.com/Duet3D/PanelDueFirmware
                                      bin file:68a650ee-e619-4847-8f02-267908ce9181-PanelDueFirmware-v2-7.0.bin

                                      dc42undefined 2 Replies Last reply Reply Quote 0
                                      • dc42undefined
                                        dc42 administrators @R006
                                        last edited by dc42

                                        @R006 where is your binary file, and which build configuration is it?

                                        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

                                        R006undefined 1 Reply Last reply Reply Quote 1
                                        • R006undefined
                                          R006 @dc42
                                          last edited by R006

                                          This post is deleted!
                                          1 Reply Last reply Reply Quote 0
                                          • dc42undefined
                                            dc42 administrators @R006
                                            last edited by

                                            @R006 I am away for a few days, but in any case I'm not sure I have a version 2 PanelDue board left. Perhaps @mfs12 can test your binary.

                                            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

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