# Building 3D Printer Firmware
A 3D printer firmware is a program that runs on the microcontroller board of a 3D printer. It translates the G-code commands generated by slicing software into actions and movements of the printer's components such as extruders, motors, heaters etc. There are various firmwares available in the market that users can choose based on the functionality and features they need.
Here are a few open-source firmware options for 3D printers that can be built by users:
### [Marlin](https://github.com/MarlinFirmware/Marlin) 
This is the most popular and widely-used firmware for 3D printers. It is highly customizable and supports many different printer models.
### [Klipper](https://github.com/Klipper3d/klipper) 
This firmware runs on a separate microcontroller and offloads processing from the main board to improve speed and accuracy. It is designed to work with a variety of 3D printer setups and supports advanced features like pressure advance and lookahead.
### [Smoothie](https://github.com/Smoothieware/Smoothieware) 
This firmware is known for its smooth and precise movement control. It supports a range of printers and features like automatic temperature control and support for multiple extruders.
## Building Marlin Firmware
Use docker to build Marlin firmware for Prusa printers at Raccoon.
`marlin-2.0.9.5` is tested and used on the Prusa printers.
### Changes in configuration.h
* enable `#define tallbear`
* change `#define Z_MAX_POS 350` to `#define Z_MAX_POS 410`
* enable `#define LCD_BED_LEVELING`
### Prerequiste
* docker
* git
## Usage
1. `git clone https://github.com/rccn-dev/rccn_marlinfw.git`
2. `cd rccn_marlinfw`
3. `./build_marlin.sh`
4. upload the hex file to the printer via Arduino-IDE or arduino-cli.