THIS SOLUTION IS NO LONGER MAINTAINED.
Follow the official building guide based on PlatformIO instead: /marlinfw.org/docs/basics/install_platformio_cli.html
This script sets up the build environment, collects dependencies and provides commands for building and uploading Marlin from the commandline. It uses the official Arduino toolchain. Everything is standalone nothing is installed outside the marlintool directory.
Before first use: Rename the marlintool.params.example file to "marlintool.params"
In its default configuration the script is setup to build the official Marlin firmware but can be easily reconfigured to build any Marlin fork/variant.
Several additional parameters in the "marlintool.params" file allow to adapt the script to your needs.
parameter | description |
---|---|
marlinRepositoryUrl | The marlin git repository. |
marlinRepositoryBranch | The branch of the configured repo to use. |
marlinDependencies | A list of dependencies to download in the format: [name],[repo url],[library directory](optional). A library directory should only be specified if the library is not in the root of the repository. |
hardwareDefinitionRepo | If you build for the Anet board this downloads the necessary hardware definition for the Arduino build environment. If you dont need this set it to an empty string. |
boardString | The Anet board identifier. |
arduinoToolchainVersion | The Arduino toolchain version to use. The build platform and architecture are auto detected. At the moment Linux 32 Bit, 64 Bit, ARM and OS X are supported. |
port | The serialport to use for uploading. |
arduinoDir | Where to put the Arduino toolchain. |
marlinDir | Where to checkout Marlin sources. |
buildDir | The build directory. |
Reminder: If you are running octopi on you Raspberry you need to disconnect it from your printer before uploading, otherwise the serial port is blocked.
Note: On OS X due to how the Arduino toolchain is packaged the Arduino splash screen will be displayed even when the toolchain is used from the commandline. This will cause the terminal window you launch marlintool from to lose focus. It also means that a build cannot be launched from a remote ssh session.
If you are building the firmware for the Anet A6/A8 you can find suitable example configurations in the Marlin sources at: github.com/MarlinFirmware/Marlin/tree/1.1.x/Marlin/example_configurations/Anet. Just replace the "Configuration.h" and "Configuration_adv.h" in the marlin directory with the files your find there for a good starting point of your configuration.
Download and configure the toolchain and the necessary libraries for building Marlin.
Also fetches the Anet board hardware definition from github if specified.
Download Marlin sources.
Update an existing Marlin clone.
Build without uploading.
Build and upload Marlin. If you are running octopi on you Raspberry
you need to disconnect it before uploading otherwise the serial port is blocked.
Backup the Marlin configuration to the named backup.
Restore the given configuration into the Marlin directory.
Cleanup everything. Remove Marlin sources and Arduino toolchain.
Set the serialport for uploading the firmware. Overrides the default set in the script.
Show help.