Merge branch 'master' of github.com:kliment/Sprinter
This commit is contained in:
commit
da9e4c7914
3 changed files with 52 additions and 8 deletions
2
README
2
README
|
|
@ -1,3 +1,5 @@
|
|||
The leading developers of Sprinter are currently Kliment and caru, though many others contribute with their patches.
|
||||
|
||||
This is a firmware for RAMPS and other reprap single-processor electronics setups. It supports printing from SD card, active heatbed control, and ATmega internal pullups.
|
||||
|
||||
This work is licensed under the GNU GPL v3 or (at the user's discretion) any later version.
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ float e_steps_per_unit = 16;
|
|||
float max_feedrate = 200000; //mmm, acceleration!
|
||||
float max_z_feedrate = 120;
|
||||
|
||||
//For SAE Prusa mendeel float z_steps_per_unit = should be 3200/1.411 for 5/16-18 rod and 3200/1.058 for 5/16-24
|
||||
//float x_steps_per_unit = 10.047;
|
||||
//float y_steps_per_unit = 10.047;
|
||||
//float z_steps_per_unit = 833.398;
|
||||
|
|
|
|||
|
|
@ -206,11 +206,55 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
// uncomment one of the following lines for RAMPS v1.3 or v1.0, comment both for v1.2 or 1.1
|
||||
// #define RAMPS_V_1_3
|
||||
// #define RAMPS_V_1_0
|
||||
|
||||
|
||||
#ifdef RAMPS_V_1_3
|
||||
|
||||
#define X_STEP_PIN 54
|
||||
#define X_DIR_PIN 55
|
||||
#define X_ENABLE_PIN 38
|
||||
#define X_MIN_PIN 3
|
||||
#define X_MAX_PIN 2
|
||||
|
||||
#define Y_STEP_PIN 60
|
||||
#define Y_DIR_PIN 61
|
||||
#define Y_ENABLE_PIN 56
|
||||
#define Y_MIN_PIN 14
|
||||
#define Y_MAX_PIN 15
|
||||
|
||||
#define Z_STEP_PIN 46
|
||||
#define Z_DIR_PIN 48
|
||||
#define Z_ENABLE_PIN 62
|
||||
#define Z_MIN_PIN 18
|
||||
#define Z_MAX_PIN 19
|
||||
|
||||
#define E_STEP_PIN 26
|
||||
#define E_DIR_PIN 28
|
||||
#define E_ENABLE_PIN 24
|
||||
|
||||
#define SDPOWER -1
|
||||
#define SDSS 53
|
||||
#define LED_PIN 13
|
||||
#define FAN_PIN 9
|
||||
#define PS_ON_PIN 12
|
||||
#define KILL_PIN -1
|
||||
|
||||
#define HEATER_0_PIN 10
|
||||
#define HEATER_1_PIN 8
|
||||
#define TEMP_0_PIN 13 // ANALOG NUMBERING
|
||||
#define TEMP_1_PIN 14 // ANALOG NUMBERING
|
||||
|
||||
|
||||
#else // RAMPS_V_1_1 or RAMPS_V_1_2 as default
|
||||
|
||||
#define X_STEP_PIN 26
|
||||
#define X_DIR_PIN 28
|
||||
#define X_ENABLE_PIN 24
|
||||
#define X_MIN_PIN 3
|
||||
#define X_MAX_PIN -2 //2
|
||||
#define X_MAX_PIN -1 //2
|
||||
|
||||
#define Y_STEP_PIN 38
|
||||
#define Y_DIR_PIN 40
|
||||
|
|
@ -231,28 +275,25 @@
|
|||
#define SDPOWER 48
|
||||
#define SDSS 53
|
||||
#define LED_PIN 13
|
||||
|
||||
#define PS_ON_PIN -1
|
||||
#define KILL_PIN -1
|
||||
|
||||
// uncomment the following line for RAMPS V1.0
|
||||
// #define RAMPS_V_1_0
|
||||
|
||||
#ifdef RAMPS_V_1_0
|
||||
|
||||
#ifdef RAMPS_V_1_0 // RAMPS_V_1_0
|
||||
#define HEATER_0_PIN 12 // RAMPS 1.0
|
||||
#define HEATER_1_PIN -1 // RAMPS 1.0
|
||||
|
||||
#define FAN_PIN 11 // RAMPS 1.0
|
||||
|
||||
#else // RAMPS_V_1_1 as default
|
||||
#else // RAMPS_V_1_1 or RAMPS_V_1_2
|
||||
#define HEATER_0_PIN 10 // RAMPS 1.1
|
||||
#define HEATER_1_PIN 8 // RAMPS 1.1
|
||||
|
||||
#define FAN_PIN 9 // RAMPS 1.1
|
||||
#endif
|
||||
|
||||
#define TEMP_0_PIN 2 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
|
||||
#define TEMP_1_PIN 1 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
|
||||
#endif
|
||||
|
||||
// SPI for Max6675 Thermocouple
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue