10

We are custom building a Cartesian 3D printer to be used in a production 3D printing environment, with the following requirements:

  • Intended Z resolution 0.13mm;
  • Dual extruders (primary + support material);
  • Four spools (two per material with y connector, perhaps add auto switch-over functionality later);
  • Camera;
  • Onboard 11" touchscreen for control & interaction, run by a Raspberry Pi 3;
  • Custom board based on ATMega2560 to control the printer;
  • Printer should gracefully handle conditions like "out of material", etc.

Question: How to select firmware?

Are there notable differences between the primary firmware options (Marlin/Repetier) for this setup? From the google code groups, I understand the Repetier has a much cleaner code base, and apparently gives smoother physical performance. Yet, from what I can gather, 95% of the community uses Marlin - is that correct?

Given that this printer will have the Pi3 to control "higher functions", is it worth considering a compact firmware like Teacup?

Edit 12/April/2017:

For others looking: After much review, Klipper was selected as the most forward firmware - all kinematic calculations are done on the host computer, instead of on the microprocessor, resulting is significantly faster/smoother stepper movement.

Mtl Dev
  • 639
  • 2
  • 8
  • 20

2 Answers2

8

Given that this printer will have the Pi3 to control "higher functions", is it worth considering a compact firmware like Teacup?

A few days ago I came across klipper.

It seems to do exactly that functionality split you mention

mogul
  • 193
  • 1
  • 5
6

Your choice of firmware depends on a lot of factors, but to name a few important ones: features, your driver board (RAMPS vs Sanguinololu vs Gen..etc), and G-code support.

Smooth/quiet operation is dependent on the motors and the driver chip's micro-stepping capabilities. The way the firmware interfaces with the driver chip plays a very minor factor in that.

Check this page for a list of firmware, their capabilities and compatible electronics (driver board):

http://www.reprap.org/wiki/List_of_Firmware

Would be useful to check G-code support of various firmwares also:

http://reprap.org/wiki/G-code

Also, as a note, a lot of the community uses Marlin, but for a lot of the commercial printers, the code has been modified slightly to fit their needs.

There is no perfect answer to this. Check the links and compare against your needs. Marlin is the safest bet since it has the most support, though you may need to modify or reconfigure it slightly for your custom board.

0scar
  • 37,708
  • 12
  • 68
  • 156
Hong
  • 76
  • 1