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

How to build the bin file?

Scheduled Pinned Locked Moved Solved
Firmware developers
4
22
934
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.
  • undefined
    Jimmykc
    last edited by 6 May 2020, 02:47

    I want to modify the source code and increase new M code for new function.
    I have refer to the buildinstructions.md, but I can’t build the bin file.
    https://github.com/dc42/RepRapFirmware/blob/v3-dev/BuildInstructions.md.
    I have questions below :

    1. The current source code is on these branches : RepRapFirmware, CoreNG, FreeRTOS, RRFLibraries, DuetWiFiSocketServer. Which branches is necessary if I use Duet3 as a standalone board (No Pi)?
    2. How do I use eclipse IDE tool to build the bin file? Could you have the training video about eclipse for freshman? Thanks.
    1 Reply Last reply Reply Quote 0
    • ?
      A Former User
      last edited by A Former User 5 Jun 2020, 03:33 6 May 2020, 03:31

      no video but this post may help with cloning the different repositories.

      after step 6.

      @bearer said in Building RRFlibraries 'atomic_uint8_t' does not name a type:

       cd /c/eclipse/firmware
      git clone https://github.com/dc42/CoreNG.git --branch dev
      git clone https://github.com/dc42/CANlib.git
      git clone https://github.com/dc42/RRFLibraries.git --branch dev
      git clone https://github.com/dc42/FreeRTOS.git
      git clone https://github.com/dc42/RepRapFirmware.git --branch v3-dev
      git clone https://github.com/dc42/DuetWiFiSocketServer.git
      

      then proceed and read the instructions carefully especially step 14.

      14 Build CoreNG first, also build FreeRTOS and RRFLibraries if needed. Then clean and build RepRapFirmware (the clean step is needed to make Eclipse notice that the output library files in the other projects have been built).

      and the rest of step 14 on how to set configuration to build for the board of your chosing

      (caveat emptor; the aboce may be stale, but the build instructions should be valid still, just needs careful reading)

      undefined 1 Reply Last reply 6 May 2020, 07:37 Reply Quote 0
      • undefined
        Jimmykc @A Former User
        last edited by 6 May 2020, 07:37

        @bearer I do step 14 and build CoreNG first, then eclipse show error below:111.jpg
        Could you tell me what step I set wrong ? Thanks.

        1 Reply Last reply Reply Quote 0
        • undefined
          dc42 administrators
          last edited by 6 May 2020, 07:39

          I think you haven't correctly done step 13 in the build instructions file.

          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

          undefined 1 Reply Last reply 6 May 2020, 07:51 Reply Quote 0
          • undefined
            Jimmykc @dc42
            last edited by 6 May 2020, 07:51

            @dc42 I have done the step 13 to build variables. The result show below.222.jpg
            Sorry, I can’t find out what wrong 13 step is. So could you tell ? Thanks.

            1 Reply Last reply Reply Quote 0
            • undefined
              dc42 administrators
              last edited by 6 May 2020, 08:03

              Confirm that you are using the dev branch of CoreNG? The project settings should look like this:

              2f6e9f7a-8a92-4b3d-b9b3-68ab30892551-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

              undefined 1 Reply Last reply 7 May 2020, 03:06 Reply Quote 0
              • undefined
                Jimmykc @dc42
                last edited by 7 May 2020, 03:06

                @dc42 Confirm that you are using the dev branch of CoreNG?
                => I download the CoreNG-1.19 file, then rename folder CoreNG-1.19 in that folder to CoreNG.
                444.jpg
                But I open the project settings, it show below
                333.jpg
                I don’t modify any setting. Why is my setting different from your setting ?
                Then I follow your setting, but the result is same. It show 3 errors.
                555.jpg

                ? 1 Reply Last reply 7 May 2020, 03:09 Reply Quote 0
                • ?
                  A Former User @Jimmykc
                  last edited by 7 May 2020, 03:09

                  @Jimmykc said in How to build the bin file?:

                  I download the CoreNG-1.19 file, then rename folder CoreNG-1.19 in that folder to CoreNG.

                  thats 3 years old, you need the dev branch and a current version. imho easiest to use git git clone https://github.com/dc42/CoreNG.git --branch dev

                  but you could try downloading this https://github.com/dc42/CoreNG/archive/dev.zip

                  undefined 1 Reply Last reply 8 May 2020, 02:57 Reply Quote 0
                  • undefined
                    Jimmykc @A Former User
                    last edited by 8 May 2020, 02:57

                    @bearer I download the CoreNG-dev, FreeRTOS-master, and RRFLibraries-dev, then I build them. The eclipse show no error and no warning.666.jpg
                    777.jpg
                    When I increase the RepRapFirmware-3.01-RC9 file to the project, I build them.
                    888.jpg
                    The eclipse show 32 errors and 2 warnings.
                    999.jpg
                    I re-check the step 14, but I don’t know what the meaning of “Then clean and build RepRapFirmware (the clean step is needed to make Eclipse notice that the output library files in the other projects have been built)” is.

                    undefined 1 Reply Last reply 8 May 2020, 08:14 Reply Quote 0
                    • undefined
                      dc42 administrators @Jimmykc
                      last edited by 8 May 2020, 08:14

                      @Jimmykc said in How to build the bin file?:

                      I don’t know what the meaning of “Then clean and build RepRapFirmware (the clean step is needed to make Eclipse notice that the output library files in the other projects have been built)” is.

                      Right click on the project and select Clean form the drop-down menu.

                      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

                      undefined 1 Reply Last reply 12 May 2020, 08:11 Reply Quote 0
                      • undefined
                        Jimmykc @dc42
                        last edited by 12 May 2020, 08:11

                        @dc42 I refer to your suggestions, but I have a questions.
                        22.jpg
                        Do I need to import to the file “DuetWiFiSocketServer” if I want to use Duet3 MB6HC and expansion board 3HC as a standalone board. (No Pi) ?

                        1 Reply Last reply Reply Quote 0
                        • undefined
                          dc42 administrators
                          last edited by dc42 5 Dec 2020, 08:17 12 May 2020, 08:15

                          You don't need DuetWiFiSocketServer to build Duet 3 firmware.

                          Latest RRF 3.01-RC source is currently on branch v3.01-dev of RepRapFirmware. The v3 branch is a few commits older.

                          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

                          undefined 1 Reply Last reply 13 May 2020, 02:48 Reply Quote 0
                          • undefined
                            Jimmykc @dc42
                            last edited by 13 May 2020, 02:48

                            @dc42 I import the v3.01-dev of RepRapFirmware.1.jpg 88.jpg
                            I right click on the project and select build configuration -> Set Active -> Duet3_V06_CAN0.
                            99.jpg
                            I build it, but I fail.
                            log.txt

                            1 Reply Last reply Reply Quote 0
                            • undefined
                              dc42 administrators
                              last edited by 13 May 2020, 06:27

                              The versions of the CoreNG and RepRapFirmware projects you are using are slightly mismatched. Try updating both of them.

                              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

                              undefined 1 Reply Last reply 13 May 2020, 07:07 Reply Quote 0
                              • undefined
                                Jimmykc @dc42
                                last edited by 13 May 2020, 07:07

                                @dc42 I update CoreNG and RepRapFirmware projects. The previous problem has be fixed but show a new error.
                                2.jpg
                                log2.txt

                                I re-build the project again, and the error will not appear.

                                1 Reply Last reply Reply Quote 0
                                • undefined
                                  dc42 administrators
                                  last edited by 13 May 2020, 09:04

                                  You can find crc32appender.exe under the Tools folder of the RepRapFirmware repository. Copy it on to your PC and add it to the PATH.

                                  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

                                  undefined 1 Reply Last reply 14 May 2020, 01:17 Reply Quote 0
                                  • undefined
                                    Jimmykc @dc42
                                    last edited by 14 May 2020, 01:17

                                    @dc42 I paste the crc32appender.exe on my path.
                                    3.jpg
                                    I fixed all problems. Thank you, but I have the last question.
                                    Is the bin file for main board if I select build configuration -> Set Active -> Duet3_V06?
                                    Is the bin file for expansion board if I select build configuration -> Set Active -> Duet3_V06_CAN0 ?
                                    4.jpg
                                    5.jpg

                                    1 Reply Last reply Reply Quote 0
                                    • undefined
                                      dc42 administrators
                                      last edited by 14 May 2020, 08:33

                                      The _CAN0 one is just a test configuration so that we can test the second CAN port, which the standard firmware doesn't use. Use the Duet3_V06 configuration.

                                      To build expansion board firmware, import project Duet3Expansion into your workspace and build that project.

                                      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

                                      undefined 1 Reply Last reply 14 May 2020, 14:03 Reply Quote 0
                                      • undefined
                                        Jimmykc @dc42
                                        last edited by 14 May 2020, 14:03

                                        @dc42 Now I know how to build the bin file. Thanks you so much.

                                        1 Reply Last reply Reply Quote 0
                                        • arhiundefined
                                          arhi
                                          last edited by 1 Jun 2020, 21:31

                                          @dc42 this still stands for RRF3.1 ?

                                          to build firmware version 2.03beta3 and later use version 2018-q4-major

                                          or you moved to 2020 version maybe?

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