Use limit switch overrides
This commit is contained in:
parent
34d2801bbe
commit
9206c0e869
|
@ -37,16 +37,14 @@
|
||||||
#endif
|
#endif
|
||||||
#define BOARD_NAME "Azteeg X3"
|
#define BOARD_NAME "Azteeg X3"
|
||||||
|
|
||||||
#include "pins_RAMPS_13.h"
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Servos
|
// Servos
|
||||||
//
|
//
|
||||||
#undef SERVO0_PIN
|
|
||||||
#undef SERVO1_PIN
|
|
||||||
#define SERVO0_PIN 44 // SERVO1 port
|
#define SERVO0_PIN 44 // SERVO1 port
|
||||||
#define SERVO1_PIN 55 // SERVO2 port
|
#define SERVO1_PIN 55 // SERVO2 port
|
||||||
|
|
||||||
|
#include "pins_RAMPS_13.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// LCD / Controller
|
// LCD / Controller
|
||||||
//
|
//
|
||||||
|
|
|
@ -37,14 +37,33 @@
|
||||||
//
|
//
|
||||||
// RAMPS pins overrides
|
// RAMPS pins overrides
|
||||||
//
|
//
|
||||||
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
|
|
||||||
#define CASE_LIGHT_PIN 44
|
//
|
||||||
#endif
|
// Servos
|
||||||
|
//
|
||||||
|
// Tested this pin with bed leveling on a Delta with 1 servo.
|
||||||
|
// Physical wire attachment on EXT1: GND, 5V, D47.
|
||||||
|
//
|
||||||
|
#define SERVO0_PIN 47
|
||||||
|
|
||||||
|
//
|
||||||
|
// Limit Switches
|
||||||
|
//
|
||||||
|
#define X_STOP_PIN 3
|
||||||
|
#define Y_STOP_PIN 14
|
||||||
|
#define Z_STOP_PIN 18
|
||||||
|
|
||||||
#ifndef FAN_PIN
|
#ifndef FAN_PIN
|
||||||
#define FAN_PIN 6
|
#define FAN_PIN 6
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
|
||||||
|
#define CASE_LIGHT_PIN 44
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// Import RAMPS 1.4 pins
|
||||||
|
//
|
||||||
#include "pins_RAMPS.h"
|
#include "pins_RAMPS.h"
|
||||||
|
|
||||||
// DIGIPOT slave addresses
|
// DIGIPOT slave addresses
|
||||||
|
@ -55,37 +74,6 @@
|
||||||
#define DIGIPOT_I2C_ADDRESS_B 0x2E // unshifted slave address for second DIGIPOT 0x2E (0x5C <- 0x2E << 1)
|
#define DIGIPOT_I2C_ADDRESS_B 0x2E // unshifted slave address for second DIGIPOT 0x2E (0x5C <- 0x2E << 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
|
||||||
// Servos
|
|
||||||
//
|
|
||||||
// Tested this pin with bed leveling on a Delta with 1 servo.
|
|
||||||
// Physical wire attachment on EXT1: GND, 5V, D47.
|
|
||||||
//
|
|
||||||
#undef SERVO0_PIN
|
|
||||||
#define SERVO0_PIN 47
|
|
||||||
|
|
||||||
//
|
|
||||||
// Limit Switches
|
|
||||||
//
|
|
||||||
// Swap the MIN and MAX endstop pins because the X3 Pro comes with only
|
|
||||||
// MIN endstop pin headers soldered onto the board.
|
|
||||||
//
|
|
||||||
#if ENABLED(DELTA)
|
|
||||||
#undef X_MIN_PIN
|
|
||||||
#undef X_MAX_PIN
|
|
||||||
#undef Y_MIN_PIN
|
|
||||||
#undef Y_MAX_PIN
|
|
||||||
#undef Z_MIN_PIN
|
|
||||||
#undef Z_MAX_PIN
|
|
||||||
|
|
||||||
#define X_MIN_PIN 2
|
|
||||||
#define X_MAX_PIN 3
|
|
||||||
#define Y_MIN_PIN 15
|
|
||||||
#define Y_MAX_PIN 14
|
|
||||||
#define Z_MIN_PIN 19
|
|
||||||
#define Z_MAX_PIN 18
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Z Probe (when not Z_MIN_PIN)
|
// Z Probe (when not Z_MIN_PIN)
|
||||||
//
|
//
|
||||||
|
|
|
@ -53,14 +53,16 @@
|
||||||
#define SPINDLE_LASER_PWM_PIN 44 // MUST BE HARDWARE PWM
|
#define SPINDLE_LASER_PWM_PIN 44 // MUST BE HARDWARE PWM
|
||||||
#define SPINDLE_DIR_PIN 42
|
#define SPINDLE_DIR_PIN 42
|
||||||
|
|
||||||
#include "pins_RAMPS_13.h"
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#undef X_MAX_PIN
|
|
||||||
#define X_MAX_PIN 79 // 2
|
#define X_MAX_PIN 79 // 2
|
||||||
|
|
||||||
|
//
|
||||||
|
// Import RAMPS 1.3 pins
|
||||||
|
//
|
||||||
|
#include "pins_RAMPS_13.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Z Probe (when not Z_MIN_PIN)
|
// Z Probe (when not Z_MIN_PIN)
|
||||||
//
|
//
|
||||||
|
|
|
@ -40,12 +40,30 @@
|
||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#define X_MIN_PIN 24
|
#ifndef X_STOP_PIN
|
||||||
#define X_MAX_PIN 22
|
#ifndef X_MIN_PIN
|
||||||
#define Y_MIN_PIN 28
|
#define X_MIN_PIN 24
|
||||||
#define Y_MAX_PIN 26
|
#endif
|
||||||
#define Z_MIN_PIN 30
|
#ifndef X_MAX_PIN
|
||||||
#define Z_MAX_PIN 32
|
#define X_MAX_PIN 22
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#ifndef Y_STOP_PIN
|
||||||
|
#ifndef Y_MIN_PIN
|
||||||
|
#define Y_MIN_PIN 28
|
||||||
|
#endif
|
||||||
|
#ifndef Y_MAX_PIN
|
||||||
|
#define Y_MAX_PIN 26
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#ifndef Z_STOP_PIN
|
||||||
|
#ifndef Z_MIN_PIN
|
||||||
|
#define Z_MIN_PIN 30
|
||||||
|
#endif
|
||||||
|
#ifndef Z_MAX_PIN
|
||||||
|
#define Z_MAX_PIN 32
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// Z Probe (when not Z_MIN_PIN)
|
// Z Probe (when not Z_MIN_PIN)
|
||||||
|
|
|
@ -26,16 +26,9 @@
|
||||||
|
|
||||||
#define BOARD_NAME "GT2560 V3.0 (MC2)"
|
#define BOARD_NAME "GT2560 V3.0 (MC2)"
|
||||||
|
|
||||||
#include "pins_GT2560_V3.h"
|
|
||||||
|
|
||||||
#undef X_MIN_PIN
|
|
||||||
#define X_MIN_PIN 22
|
#define X_MIN_PIN 22
|
||||||
|
|
||||||
#undef X_MAX_PIN
|
|
||||||
#define X_MAX_PIN 24
|
#define X_MAX_PIN 24
|
||||||
|
|
||||||
#undef Y_MIN_PIN
|
|
||||||
#define Y_MIN_PIN 26
|
#define Y_MIN_PIN 26
|
||||||
|
|
||||||
#undef Y_MAX_PIN
|
|
||||||
#define Y_MAX_PIN 28
|
#define Y_MAX_PIN 28
|
||||||
|
|
||||||
|
#include "pins_GT2560_V3.h"
|
||||||
|
|
|
@ -45,13 +45,12 @@
|
||||||
#undef LCD_PINS_D5
|
#undef LCD_PINS_D5
|
||||||
#undef LCD_PINS_D6
|
#undef LCD_PINS_D6
|
||||||
#undef LCD_PINS_D7
|
#undef LCD_PINS_D7
|
||||||
#undef FIL_RUNOUT_PIN
|
#undef FIL_RUNOUT_PIN // Uses Beeper/LED Pin Pulled to GND
|
||||||
|
|
||||||
#define LCD_SDSS 31 // Smart Controller SD card reader (rather than the Melzi)
|
#define LCD_SDSS 31 // Smart Controller SD card reader (rather than the Melzi)
|
||||||
#define LCD_PINS_RS 28 // ST9720 CS
|
#define LCD_PINS_RS 28 // ST9720 CS
|
||||||
#define LCD_PINS_ENABLE 17 // ST9720 DAT
|
#define LCD_PINS_ENABLE 17 // ST9720 DAT
|
||||||
#define LCD_PINS_D4 30 // ST9720 CLK
|
#define LCD_PINS_D4 30 // ST9720 CLK
|
||||||
#define FIL_RUNOUT_PIN -1 // Uses Beeper/LED Pin Pulled to GND
|
|
||||||
|
|
||||||
#if DISABLED(SPEAKER) && ENABLED(BLTOUCH)
|
#if DISABLED(SPEAKER) && ENABLED(BLTOUCH)
|
||||||
#define SERVO0_PIN 27
|
#define SERVO0_PIN 27
|
||||||
|
|
|
@ -83,23 +83,29 @@
|
||||||
//
|
//
|
||||||
// Limit Switches
|
// Limit Switches
|
||||||
//
|
//
|
||||||
#ifndef X_MIN_PIN
|
#ifndef X_STOP_PIN
|
||||||
|
#ifndef X_MIN_PIN
|
||||||
#define X_MIN_PIN 3
|
#define X_MIN_PIN 3
|
||||||
#endif
|
#endif
|
||||||
#ifndef X_MAX_PIN
|
#ifndef X_MAX_PIN
|
||||||
#define X_MAX_PIN 2
|
#define X_MAX_PIN 2
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifndef Y_MIN_PIN
|
#ifndef Y_STOP_PIN
|
||||||
|
#ifndef Y_MIN_PIN
|
||||||
#define Y_MIN_PIN 14
|
#define Y_MIN_PIN 14
|
||||||
#endif
|
#endif
|
||||||
#ifndef Y_MAX_PIN
|
#ifndef Y_MAX_PIN
|
||||||
#define Y_MAX_PIN 15
|
#define Y_MAX_PIN 15
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifndef Z_MIN_PIN
|
#ifndef Z_STOP_PIN
|
||||||
|
#ifndef Z_MIN_PIN
|
||||||
#define Z_MIN_PIN 18
|
#define Z_MIN_PIN 18
|
||||||
#endif
|
#endif
|
||||||
#ifndef Z_MAX_PIN
|
#ifndef Z_MAX_PIN
|
||||||
#define Z_MAX_PIN 19
|
#define Z_MAX_PIN 19
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -26,20 +26,14 @@
|
||||||
|
|
||||||
#define BOARD_NAME "Dagoma3D F5 RAMPS"
|
#define BOARD_NAME "Dagoma3D F5 RAMPS"
|
||||||
|
|
||||||
#ifdef E0_AUTO_FAN_PIN
|
#define X_STOP_PIN 2
|
||||||
#undef E0_AUTO_FAN_PIN
|
#define Y_STOP_PIN 3
|
||||||
#endif
|
#define Z_STOP_PIN 15
|
||||||
|
#define FIL_RUNOUT_PIN 39
|
||||||
|
|
||||||
#define E0_AUTO_FAN_PIN 7
|
#define ORIG_E0_AUTO_FAN_PIN 7
|
||||||
|
|
||||||
#define X_MAX_PIN -1
|
|
||||||
#define X_MIN_PIN 2
|
|
||||||
#define Y_MAX_PIN 3
|
|
||||||
#define Y_MIN_MIN -1
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
#define Z_MIN_PIN 15
|
|
||||||
#define FILRUNOUT_PIN 39
|
|
||||||
#define MOSFET_D_PIN -1
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// Import RAMPS 1.4 pins
|
||||||
|
//
|
||||||
#include "pins_RAMPS.h"
|
#include "pins_RAMPS.h"
|
||||||
|
|
||||||
|
|
|
@ -34,14 +34,16 @@
|
||||||
|
|
||||||
#define BOARD_NAME "TRONXY-V3-1.0"
|
#define BOARD_NAME "TRONXY-V3-1.0"
|
||||||
|
|
||||||
#include "pins_RAMPS.h"
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Servos
|
// Servos
|
||||||
//
|
//
|
||||||
#undef SERVO1_PIN
|
|
||||||
#define SERVO1_PIN 12 // 2560 PIN 25/PB6
|
#define SERVO1_PIN 12 // 2560 PIN 25/PB6
|
||||||
|
|
||||||
|
//
|
||||||
|
// Import RAMPS 1.4 pins
|
||||||
|
//
|
||||||
|
#include "pins_RAMPS.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue