No description
This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2017-06-16 16:25:43 +01:00
.settings Version 1.17rc1a 2016-12-13 21:32:10 +00:00
Developer-documentation Version 1.18RC1 2017-03-28 19:35:35 +01:00
Driver Version 1.18.1 2017-04-09 08:36:51 +01:00
Release Added version 1.18.2 Duet Ethernet binary 2017-06-16 16:25:43 +01:00
Scripts Version 1.12 2016-05-07 21:55:19 +01:00
SD-image DuetEthernet support + minor changes 2016-12-29 14:11:08 +00:00
src Version 1.18.2 2017-06-16 13:39:28 +01:00
Tools/Windows Added Tools folder 2016-07-22 19:41:57 +01:00
.cproject Version 1.18alpha2 2017-02-17 09:04:02 +00:00
.gitattributes Updated .gitattributes 2016-10-19 09:22:35 +01:00
.gitignore Updated gitignore again 2016-08-23 21:40:54 +01:00
.project Switched to new build system 2016-03-09 16:38:18 +00:00
BuildInstructions.md Rename BuildInstructions.txt to BuildInstructions.md 2017-03-13 13:55:09 +00:00
Changes in dc42 fork.txt
LICENCE Update LICENCE 2016-06-13 12:35:29 +01:00
Notes on dc42 fork of RepRapFirmware.odt
Notes on dc42 fork of RepRapFirmware.pdf
README.md Update README.md 2017-03-25 10:32:10 +00:00
WHATS_NEW.md Updated WHATS_NEW.md for release 1.18 2017-04-07 13:23:52 +01:00

This is firmware for controlling 3D printers and related devices using electronics with Atmel ARM main processors. The minimum specification processor it is intended for is ARM Cortex M3 with 96Kb RAM such as the SAM3X8E.

General design principles:

  • Unlike most other 3D printer firmwares, it is not intended to be portable to outdated processors with limited CPU power. So make good use of the power of modern inexpensive ARM processors to implement advanced features.
  • "One binary to rule them all". For a given electronics board, all features of interest to many 3D printer owners are supported by a single binary. Users do not need to recompile the firmware unless they have unusual requirements.
  • "G-code everywhere". All firmware configuration is done using gcodes in the config.g file. Most type of change can be done on the fly so that you can experiment with different configurations without even having to restart the printer.
  • Use high-integrity coding standards to help ensure that the firmware is reliable. In particular, don't use dynamic memory allocation after the initialisation phase. The MISRA-C++ 2008 coding standard serves as a guide as to what is acceptable practice, but compliance to it is not rigidly enforced in order to allow features from later versions of the C++ language to be used.
  • Use an appropriate degree of modularity. Too little modularity makes the code hard to understand and maintain. Too much makes it hard to introduce new features when the existing module boundaries turn out to be inappropriate.
  • Use object-based and object-oriented design principles where it is appropriate. In particular, class data should normally be private. Use 'friend' sparingly or not at all.

RepRapFirmware has pioneered a number of advances in 3D printing including:

  • Support for mixing extruders (July 2014)
  • Precise timing of step pulses, even during acceleration (Janury 2015)
  • Segmentation-free delta motion (January 2015)
  • Least-squares auto calibratoin of delta printers (April 2015)
  • Accurate extruder pressure advance, including retraction before the end of a move when needed (January 2015)

For documentation on supported gcodes and configuration, see https://duet3d.com/wiki. There is a tool for generating the config.g file and homing files at https://configurator.reprapfirmware.org/.

For compiling from source, see separate file BuildInstructions.md.

Licence: GPLv3, see http://www.gnu.org/licenses/gpl-3.0.en.html