Here are my main firmware settings (software settings will be in a following post), which are producing reasonable prints on my machine (your mileage may vary!):
Firmware Settings – Sprinter:
The settings I have had to adjust are in the “Configuration.h” file.
Line 15: Set the Motherboard ID value to match your electronics hardware; I am running a RAMPS 1.4 so it’s:
#define MOTHERBOARD 33
Line 25 / 26: Define your temperature sensors; I have a 100k thermistor on my Hot End, and no Heated Bed as yet:
#define THERMISTORHEATER 1
#define THERMISTORBED 1
Line 30: Calibrating the steppers; after a bit of trial and error, printing and measuring calibration blocks, etc, I am using:
float axis_steps_per_unit[] = {80.*40./51., 80.*40./51., 3200./1.25, 700.};
(This was originally {80, 80, 3200/1.25, 700} by default for a metric Prusa Mendel with a Wade’s Extruder.)
Line 45: Set the comms baud rate:
#define BAUDRATE 115200
Lines 81 – 83: Setting the build volume; as reported in an earlier post http://julianh72.blogspot.com/2011/08/assembling-y-is-there-always-something.html , my print range is somewhat restricted, so I am using:
const int X_MAX_LENGTH = 175; // (was 200)
const int Y_MAX_LENGTH = 175; // (was 200)
const int Z_MAX_LENGTH = 110; // (was 100)
I think pretty well everything else has been left as per the defaults. Save the whole Sprinter Sketchbook project in Arduino, upload to the Arduino Mega, and we’re ready to start tweaking the software …