1, IM-Magic Partition Resizer Home, freeware that can repair damaged sd card for free. Step 1: Download this freeware and connect your memory card with a card reader to pc. Step 2: Right click the memory card that shows up in the software, and choose option -'Check Partition' to start the repairing process.
RepRap FirmwareRelease status: working
Description | Object-oriented C++ firmware for 32-bit controllers |
License | |
Author | |
Contributors | |
Based-on | |
Categories | |
CAD Models | |
External Link |
- Download Quickshortcut APK on your computer and copy it to the SD card with a card reader. Insert the SD card into your device. Download and run SideSync Application on your computer and connect your device via a USB cable. When message 'Open with' appears, choose 'Galaxy Apps'.
- I talk to you How to Flash ZTE Stock Firmware using Smartphone Flash Tool (SP FlashTool). Take a look at this complete video, then do it. Here is a step by s.
- Tap on the image file button, locate and select the firmware you want to burn (filename.img downloaded from the official source) 5. Tap to burn (Note that this process will automatically format the SD card before burning, If there's any other important data in the SD card need to be backup first), After the system prompts finish writing, then click on 'Exit' and remove the SD Card.
- 1RepRap Firmware Use
- 1.10Configuration
- 2Firmware design
- 2.2General design principles
- 2.2.2Structure
- 2.2General design principles
Overview
RepRapFirmware runs on 32 bit microprocessors such as the Atmel/Microchip SAM3X8E, SAM4E8E, SAM4S8C and SAME70Q20 processors found in Duet electronics. There is also a port for boards using LPC1768/1769 processors, and a port dpr STM processor is under way. It supports 3D printers, CNC machines, laser cutters and engravers.
This firmware is pre-compiled and flashed on to the printer board. It is configured with human editable files located on an SD-card plugged into the printer electronics. As such, there is no need for ordinary users to compile the software nor install any development tools.
The software can receive G-Code from the USB port, the serial port, the SD card, the Ethernet or WiFi interface via http, and the Ethernet interface via Telnet.
Although it can run from an interface connected via USB, most users prefers to operate from a web interface, with the board connected to an Ethernet or WiFi network. Files to be printed are uploaded to the SD card via the web interface.
The RepRapFirmware philosophy is that every operation is done with G-code, including configuration. For this reason, RepRapFirmware supports a number of GCodes, mostly in the M500-M599 and M900-M999 range, that are not currently supported by most other firmwares. See RepRap Firmware G-Codes.
The configuration file is read on SD card at start-up.
Any G-code or macro could be sent to the board while operating the printer, allowing instant feed-back for any configuration modification. As interactive modifications are lost at next board start-up, the successfully tested G-Codes shall be manually introduced in the configuration file, which can be edited directly in the web interface.
This interactive configuration makes printer commissioning and tuning easier than with most other firmwares.
Automation is possible through macros which can contain conditional instructions and loops.
How To Use Sd Firmware Tools
The software is evolving constantly. See RepRap Firmware FAQ
Generations
RepRapFirmware 1.x was written originally for the Duet 0.6 electronics using the ATSAM3X8E microcontroller. It was ported to other processors, but those ports have since moved on to RepRapFirmware 2. It services the machine by executing a loop that calls the Spin function of each module, just like almost all other 3D printer firmwares do.
RepRapFirmware 2 uses the FreeRTOS Real Time Operating System with pre-emptive multitasking, in order to run high-priority processes for critical tasks such as maintaining temperature, and lower priority tasks for other functions. The networking subsystem is more modular to allow different types of network interfaces to be used, even multiple network interfaces on the same board.
Sd Card Firmware Download
RepRapFirmware 3 also use FreeRTOS. It has a more flexible system to allow almost all I/O port connections on the electronics other than stepper motor connections to have their functions reassigned at start-up, or even when the system is running. It also supports stepper motors, heaters, fans, temperature sensors, endstop inputs etc. on expansion boards connected to the main board via CAN bus. It also supports offloading the storage, networking and user interface functions to a single board computer (e.g. Raspberry Pi) via a dedicated SPI connection.
Innovative features
RepRapFirmware has been a platform for introducing innovation in 3D printer firmware. It is believed to be the first to introduce the following technologies into open-source 3D printing firmware, and most of these are still not provided by any other firmware as at December 2019:
- Precise step time generation, not only during constant-speed motion but also during acceleration (since January 2015)
- Precise carriage motion on delta printers, without using segmentation to approximate linear motion on a delta printer (since January 2015)
- Least-squares auto calibration of 7 geometry factors (since extended to 9) of delta printers (since April 2015)
- True pressure advance with accurate timing, including retraction of filament towards the end of a decelerating move when it is called for (since January 2015)
- High speed (typically 800kbytes/sec) file upload to the SD card over Ethernet or WiFi, making it practical to use the web interface for all common printing operations
- Configuration file editing and updating in the web interface
- Firmware updating through the web interface
- Comprehensive reporting of printer status and configuration using an extensible JSON-based response
- Mesh bed compensation with a 3D representation of the bed height map in the web interface (since December 2016)
- Heater auto-tuning that measures separately the gain, time constant and dead time of the heater, allowing for different PID parameters to be used while heating up (to minimise overshoot) and while printing (to react faster to changes in heating demand)
- Dynamic Acceleration Adjustment to mitigate ringing
- Support for any kinematics with up to 10 axes for which the motion of each axis is a linear combination of the motion of the motors
- Support for additional towers on delta printers, for example to carry flying extruders
- Support for CAN-bus connected expansion boards, allowing large numbers of motors, heaters, sensors, fans etc. to be controlled (since September 2019)
- Conditional execution and loops in regular GCode files and macro files (since January 2020)
- An Object Model that allows the state of the machine to be queried in GCode commands and via the HTTP interface (since January 2020)
Printer geometries and adjustment
A single build of RepRapFirmware handles multiple geometries:
- Cartesian
- CoreXY, CoreXZ, CoreYZ, MarkForged, CoreXYU, CoreXYUV
- Any other kinematics with up to 9 axes for which the motion of each axis is a linear combination of the motion of each motor
- Linear delta (trajectories are calculated without segmentation), with fast least-squares auto calibration and X,Y,Z scaling correction
- Linear delta with up to 3 additional towers (e.g. for flying extruders)
- Rotary delta
- Serial SCARA
- Polar
Automatic calibration
Automatic calibration can be done with a Z-sensor. For delta printers, there is an algorithm evaluating some geometry parameters. This is sufficiently fast to be run at each print during the heating phase, and so printer thermal expansion is taken into account.
Connectivity
When Duet board is connected via Ethernet, any Ethernet or WiFi device having access to your network can operate the printer with a web interface.
RepRapPro have released a video (outdated) showing the web interface in use with the Ormerod printer. Forum user dc42 has published a series of blog posts showing how to use the Duet to control a Mini Kossel printer. The web interface is independant of the Firmware and communicate with it via G-codes, getting data with querying G-codes (this is invisible for the user).
Losing a connection to the printer does not have any effect on the print, but you cannot pause a print without having a connection (which could be with another device than the one which started the print).
Multiple printers could be operated from one browser.
One printer can be accessed simultaneously from multiple network devices, possibly through WiFi.
The image of any camera accessible on your network (IP camera) can be embedded in the web interface.
The web interface is available in English, French, Spanish, Swedish and Chinese.
SD-card file architecture
To operate, the firmware need the following files to be present on the SD-card - names are case sensitive:
- configuration file
/sys/config.g
- A set of system G-code macros with predefined names located in
/sys
directory - A set of user launchable macros located in
/macros
directory
See a typical set of RepRap Firmware macros
All these files shall be edited with any text editor for adaptation to a given machine. Kit sellers supply already configured SD image and/or pre-loaded SD-card. An SD-card supplied by user shall be formatted in FAT32 with 32 kB clusters prior use, manufacturer pre-formatting being often troublesome.
/gcodes
G-code print files are in /gcodes
directory - with this exact orthography. Sub-directories can be defined.
/www
directory for web interface (Duet 0.6 and 0.8.5)
All the web interface files are in /www
directory. These files are served directly by the board to the browser and all interface processing is done by the browser (the web interface is programmed in Javascript).
Compatible hardware
- Duet (all versions : 0.6 and 0.8.5)
- Duet 2 Wifi, Ethernet, Maestro
- Duet 3
- RADDS, but without Ethernet connection, this can only be operated with a front-end program
- Alligator Board – there was a port of DC42-1.09k, but there is no details about this port.
- LPC1768/1769-based boards (port maintained by [sdavi])
SD card
An SD card is delivered with each Duet. Sustained transfer speeds have gradually improved as the firmware has been further developed, and for large files are typically in the range 500kbytes/sec to 1.1Mbytes/sec using firmware version 1.17.
Note that the performance claimed by the SD card manufacturers is for short bursts of writing large blocks. RepRapFirmware has limited buffer memory, so it does longer bursts of smaller blocks, which may prove slower on supposedly fast cards. Your experience may vary.
Configuration
The following forks are maintained:
- DC42 fork for Duet and Arduino Due/RADDS boards
- sdavi for for LPC1768/1769 boards such as Smoothieboard, MKS SBASE
Each fork propose a complete SD-card image, with files that you will adapt to your own machine, using any text editor.
Boards are delivered with a firmware flashed, however you shall systematically update it before starting the commissioning of your machine.
Recent firmware can be updated with simple file uploading over the network.
Macros files could be uploaded through web interface. System macros are automatically uploaded in '/sys' directory, others in '/macros' directory
Configuration file can be uploaded through web interface or edited directly in the interface.
Image update or multiple file manipulation could be done with FTP without removing the SD card.
For common operation, there is no need to edit any file of the web interface, however depending browser configuration, users may prefer to configure some files for better usability.
Configuration & commissioning
Note: Most of the following have been superseded by more recent content on the Duet3D wiki.
Buy a blood-letting t-shirt today, and it ships within 24 hours and comes with a 30-day money-back guarantee. Choose from thousands of blood-letting shirt designs for men, women, and children which have been created by our community of independent artists and iconic brands. Our high-quality blood-letting shirts are available in multiple sizes and body styles. Bloodletting t shirts. Bloodletting T-Shirt I literally never see anyone else in this shirt. I always wear it on my Dwight, but I am shocked that I have yet to see another in game. Did no one buy anything from the Dead by Daylight store when they were running the promotion? High quality Bloodletting gifts and merchandise. Inspired designs on t-shirts, posters, stickers, home decor, and more by independent artists and designers from around the world. All orders are custom made and most ship worldwide within 24 hours. Whatever mood you're in, you're sure to find a Bloodletting t-shirt to match on the Redbubble marketplace. Snarky slogan t-shirts. Arty graphic t-shirts. Super-geeky t-shirts to connect you with your fellow proud nerds. Cute t-shirts that are so freaking adorable you will literally scream until people start asking if you're OK.
- T3P3 guide to the config.g and homing files for Cartesian printers
- Preconfigured config.g files for various printers: https://github.com/reprappro/RepRapFirmware/tree/test/SD-image and https://github.com/dc42/RepRapFirmware/tree/dev/SD-image
- RepRapPro guide for commissioning Duet-based printers, including updating firmware: https://reprappro.com/documentation/commissioning-introduction/commissioning-duet/. You may also find their wiring diagrams for the Ormerod, Huxley and Mendel useful.
- Duet troubleshooting guide: https://reprappro.com/documentation/troubleshooting-introduction/electronics-problems/
- DC42 fork allow external driver to be connected on the expansion connector and remapped with M569 . See http://forums.reprap.org/read.php?178,552124,552305
- Useful RepRap Firmware macros
- RepRap Firmware heating for configuration and tuning of heating loops
Firmware binaries
- Original RepRapPro firmware binaries (no longer maintained, and not for deltas or CoreXY machines): https://github.com/reprappro/RepRapFirmware/tree/master/Release
- dc42's fork firmware binaries: https://github.com/dc42/RepRapFirmware/tree/dev/Release
- sdavi fork for LPC1769/1769-based boards: https://github.com/sdavi/RepRapFirmware/releases
- Chrishamm's DuetWebControl web interface: https://github.com/chrishamm/DuetWebControl
Further reading
- Official Think3DPrint3D Duet documentation (now out of date)
Introduction
RepRap Firmware is intended to be a fully object-oriented highly modular C++ control program forRepRap self-replicating 3D printers.
It owes a lot to Marlin and to the original RepRap FiveD Firmware.
It was written by Adrian at RepRapPro Ltd.
It is on Github here.
For details of how to compile the source code, see below.
General design principles
These have been modified somewhat since Adrian Bowyer write them initially.
- Control by RepRap G Codes. These are taken to be machine independent, though some may be unsupported.
- No use of dynamic memory allocation after the initialisation phase (this is standard practice in high-integrity real-time embedded software development).
- Code shall compile without warnings, with all warning messages enabled, except where this is not practical in third-party library code.
- Use C++ OO techniques, and make classes hide their data.
- Minimise the use of conditional compilation. The standard distribution binary should support all features.
- Make full use of the processor resources available - RepRapFirmware is never going to use a processor that is slower/less powerful than the SAM3X8E.
- As far as reasonably practical, processor-dependent code should be in the hardware abstraction layer project (originally the Arduino Due core, now the CoreNG project).
- Concentration of all machine-dependent definitions and code in Platform.h and Platform.cpp.
- Avoid specials for (X,Y) or (Z) - all movement is 3-dimensional,
- Except in Platform.h, use real units (mm, seconds etc) throughout the rest of the code wherever possible.
- Try to be efficient in memory use, but this is not critical.
- Labour hard to be efficient in time use, and this is critical.
- Don't abhor floats - they work fast enough if you're clever.
- Don't avoid arrays and structs/classes.
- Don't avoid pointers.
- Use operator and function overloading where appropriate.
- Minimise the use of #define. Use C++ constant declarations and inline functions instead wherever possible.
Naming conventions
- #defines are all CAPITALS_WITH_OPTIONAL_UNDERSCORES_BETWEEN_WORDS
- No underscores in other names - MakeReadableWithCapitalisation
- Class names and functions start with a CapitalLetter
- Variables start with a lowerCaseLetter
- Use veryLongDescriptiveNames
Structure
There are nine main classes:
- RepRap
- GCodes
- Heat
- Move
- Tool
- Platform
- Network
- Webserver
- PrintMonitor
RepRap
This is just a container class for the single instances of all the others, and otherwise does very little.
GCodes
This class is fed GCodes, either from the web interface, or from GCode files, or from a serial interface,Interprets them, and requests actions from the RepRap machine via the other classes.
Heat
This class implements all heating and temperature control in the RepRap machine.
Move
This class controls all movement of the RepRap machine, both along its axes, and in its extruder drives.
Tool
This class allows the definition of tools. A tool is zero or more heaters associated with zero or more drives. The heaters can be set to different temperatures, and the drives can be set to go at different (and varying) speeds. This allows the easy implementation of multiple-head machines, mixing-head machines and so on.
Platform
This is the only class that knows anything about the physical setup of the RepRap machine and itscontrolling electronics. It implements the interface between all the other classes and the RepRap machine.All the other classes are completely machine-independent (though they may declare arrays dimensionedto values #defined in Platform.h).
Webserver
Firmware binaries
- Original RepRapPro firmware binaries (no longer maintained, and not for deltas or CoreXY machines): https://github.com/reprappro/RepRapFirmware/tree/master/Release
- dc42's fork firmware binaries: https://github.com/dc42/RepRapFirmware/tree/dev/Release
- sdavi fork for LPC1769/1769-based boards: https://github.com/sdavi/RepRapFirmware/releases
- Chrishamm's DuetWebControl web interface: https://github.com/chrishamm/DuetWebControl
Further reading
- Official Think3DPrint3D Duet documentation (now out of date)
Introduction
RepRap Firmware is intended to be a fully object-oriented highly modular C++ control program forRepRap self-replicating 3D printers.
It owes a lot to Marlin and to the original RepRap FiveD Firmware.
It was written by Adrian at RepRapPro Ltd.
It is on Github here.
For details of how to compile the source code, see below.
General design principles
These have been modified somewhat since Adrian Bowyer write them initially.
- Control by RepRap G Codes. These are taken to be machine independent, though some may be unsupported.
- No use of dynamic memory allocation after the initialisation phase (this is standard practice in high-integrity real-time embedded software development).
- Code shall compile without warnings, with all warning messages enabled, except where this is not practical in third-party library code.
- Use C++ OO techniques, and make classes hide their data.
- Minimise the use of conditional compilation. The standard distribution binary should support all features.
- Make full use of the processor resources available - RepRapFirmware is never going to use a processor that is slower/less powerful than the SAM3X8E.
- As far as reasonably practical, processor-dependent code should be in the hardware abstraction layer project (originally the Arduino Due core, now the CoreNG project).
- Concentration of all machine-dependent definitions and code in Platform.h and Platform.cpp.
- Avoid specials for (X,Y) or (Z) - all movement is 3-dimensional,
- Except in Platform.h, use real units (mm, seconds etc) throughout the rest of the code wherever possible.
- Try to be efficient in memory use, but this is not critical.
- Labour hard to be efficient in time use, and this is critical.
- Don't abhor floats - they work fast enough if you're clever.
- Don't avoid arrays and structs/classes.
- Don't avoid pointers.
- Use operator and function overloading where appropriate.
- Minimise the use of #define. Use C++ constant declarations and inline functions instead wherever possible.
Naming conventions
- #defines are all CAPITALS_WITH_OPTIONAL_UNDERSCORES_BETWEEN_WORDS
- No underscores in other names - MakeReadableWithCapitalisation
- Class names and functions start with a CapitalLetter
- Variables start with a lowerCaseLetter
- Use veryLongDescriptiveNames
Structure
There are nine main classes:
- RepRap
- GCodes
- Heat
- Move
- Tool
- Platform
- Network
- Webserver
- PrintMonitor
RepRap
This is just a container class for the single instances of all the others, and otherwise does very little.
GCodes
This class is fed GCodes, either from the web interface, or from GCode files, or from a serial interface,Interprets them, and requests actions from the RepRap machine via the other classes.
Heat
This class implements all heating and temperature control in the RepRap machine.
Move
This class controls all movement of the RepRap machine, both along its axes, and in its extruder drives.
Tool
This class allows the definition of tools. A tool is zero or more heaters associated with zero or more drives. The heaters can be set to different temperatures, and the drives can be set to go at different (and varying) speeds. This allows the easy implementation of multiple-head machines, mixing-head machines and so on.
Platform
This is the only class that knows anything about the physical setup of the RepRap machine and itscontrolling electronics. It implements the interface between all the other classes and the RepRap machine.All the other classes are completely machine-independent (though they may declare arrays dimensionedto values #defined in Platform.h).
Webserver
Sd Firmware Tool Download
This class talks to the network (via Network) and implements a webserver to give an interactiveinterface to the RepRap machine. It uses the Knockout and Jquery Javascript libraries to achieve this.
Implementation
When the software is running there is one single instance of each main class. For code safety reasons, and all the memory allocation isdone on initialization and new/malloc should not be used in the general running code. In addition, delete is neverused. Each class has an Init() function that resets it to its boot-up state; the constructors merely handlethat memory allocation on startup. Calling RepRap.Init() calls all the other Init()s in the right sequence.
There are other ancillary classes that are declared in the .h files for the master classes that use them.
Compiling from Source
The following instructions relate to the original RepRapPro version of RepRapFirmware, which is no longer maintained. The current maintained forks by dc42, chrishamm and dcnewman all use different (and generally simpler) build procedures, as described in the corresponding github repositories.
The Think3dPrint3d blog has a post on how to setup Eclipse to modify and compile the firmware with printer specific options, the ultimate aim to to have all printer specific options set by g-code. See also this [thread about compilation].
RepRap Firmware was developed using the Eclipse IDE, which is much more powerful for big software projects than the Arduino IDE.
We use Eclipse Juno, which is available here.
You will also need the Eclipse Arduino support available here.
And the Arduino IDE itself (make sure you get the latest stable one for the Due/Duet), which is available here.
Start by getting the Arduino IDE programming your Duet with a simple Hello World program that prints to the USB (SerialUSB.print('Hello World'); on the Due/Duet, not Serial.print('Hello World');..)
Then install Eclipse and the Arduino plugin.
Make temporary copies of RepRapFirmware.cpp and RepRapFirmware.h from your download in another folder (you will only need to do this once).
Finally use Eclipse to open the Arduino project called RepRapFirmware in the folder where you have downloaded the RepRap Firmware code. Tell Eclipse to use the Arduino-libraries files you downloaded as the local libraries. Eclipse will complain that the project already exists (which it does - it is your download). Ignore this and it will open the project anyway.
Annoyingly the first time it may also overwrite RepRapFirmware.cpp and RepRapFirmware.h. So close the project, overwrite its overwrites with the two files you saved, open the project again and refresh it. Everything should now be ship-shape. Add the libraries
to your project. Under no circumstances be tempted to add standard Arduino libraries for devices like Ethernet - these are for the Due, and will not work on the Duet.
You should now be able to compile the code and upload the result to the Duet.