2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-07-26 06:12:03 +00:00
|
|
|
* Conditionals_post.h
|
2015-03-21 22:40:20 +00:00
|
|
|
* Defines that depend on configuration but are not editable.
|
|
|
|
*/
|
2016-03-24 18:01:20 +00:00
|
|
|
|
2016-07-26 06:12:03 +00:00
|
|
|
#ifndef CONDITIONALS_POST_H
|
|
|
|
#define CONDITIONALS_POST_H
|
2015-03-21 22:40:20 +00:00
|
|
|
|
2017-10-15 00:05:32 +00:00
|
|
|
#define AVR_ATmega2560_FAMILY_PLUS_70 ( \
|
|
|
|
MB(BQ_ZUM_MEGA_3D) \
|
|
|
|
|| MB(MIGHTYBOARD_REVE) \
|
|
|
|
|| MB(MINIRAMBO) \
|
|
|
|
|| MB(SCOOVO_X9H) \
|
|
|
|
)
|
|
|
|
|
2017-08-30 22:49:53 +00:00
|
|
|
#define IS_SCARA (ENABLED(MORGAN_SCARA) || ENABLED(MAKERARM_SCARA))
|
|
|
|
#define IS_KINEMATIC (ENABLED(DELTA) || IS_SCARA)
|
|
|
|
#define IS_CARTESIAN !IS_KINEMATIC
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
2016-08-30 19:15:41 +00:00
|
|
|
* Axis lengths and center
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2016-03-13 06:38:55 +00:00
|
|
|
#define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
|
|
|
|
#define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
|
|
|
|
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
|
2017-07-22 03:54:39 +00:00
|
|
|
|
|
|
|
// Defined only if the sanity-check is bypassed
|
|
|
|
#ifndef X_BED_SIZE
|
|
|
|
#define X_BED_SIZE X_MAX_LENGTH
|
|
|
|
#endif
|
|
|
|
#ifndef Y_BED_SIZE
|
|
|
|
#define Y_BED_SIZE Y_MAX_LENGTH
|
|
|
|
#endif
|
|
|
|
|
2017-08-30 22:49:53 +00:00
|
|
|
// Require 0,0 bed center for Delta and SCARA
|
|
|
|
#if IS_KINEMATIC
|
|
|
|
#define BED_CENTER_AT_0_0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Define center values for future use
|
2017-07-22 03:54:39 +00:00
|
|
|
#if ENABLED(BED_CENTER_AT_0_0)
|
|
|
|
#define X_CENTER 0
|
|
|
|
#define Y_CENTER 0
|
|
|
|
#else
|
|
|
|
#define X_CENTER ((X_BED_SIZE) / 2)
|
|
|
|
#define Y_CENTER ((Y_BED_SIZE) / 2)
|
|
|
|
#endif
|
|
|
|
#define Z_CENTER ((Z_MIN_POS + Z_MAX_POS) / 2)
|
|
|
|
|
2017-08-30 22:49:53 +00:00
|
|
|
// Get the linear boundaries of the bed
|
2017-07-22 03:54:39 +00:00
|
|
|
#define X_MIN_BED (X_CENTER - (X_BED_SIZE) / 2)
|
|
|
|
#define X_MAX_BED (X_CENTER + (X_BED_SIZE) / 2)
|
|
|
|
#define Y_MIN_BED (Y_CENTER - (Y_BED_SIZE) / 2)
|
|
|
|
#define Y_MAX_BED (Y_CENTER + (Y_BED_SIZE) / 2)
|
2015-03-21 22:40:20 +00:00
|
|
|
|
2016-03-11 05:35:44 +00:00
|
|
|
/**
|
2016-11-06 04:47:38 +00:00
|
|
|
* CoreXY, CoreXZ, and CoreYZ - and their reverse
|
2016-03-11 05:35:44 +00:00
|
|
|
*/
|
2016-11-06 04:47:38 +00:00
|
|
|
#define CORE_IS_XY (ENABLED(COREXY) || ENABLED(COREYX))
|
|
|
|
#define CORE_IS_XZ (ENABLED(COREXZ) || ENABLED(COREZX))
|
|
|
|
#define CORE_IS_YZ (ENABLED(COREYZ) || ENABLED(COREZY))
|
|
|
|
#define IS_CORE (CORE_IS_XY || CORE_IS_XZ || CORE_IS_YZ)
|
|
|
|
#if IS_CORE
|
|
|
|
#if CORE_IS_XY
|
|
|
|
#define CORE_AXIS_1 A_AXIS
|
|
|
|
#define CORE_AXIS_2 B_AXIS
|
|
|
|
#define NORMAL_AXIS Z_AXIS
|
|
|
|
#elif CORE_IS_XZ
|
|
|
|
#define CORE_AXIS_1 A_AXIS
|
|
|
|
#define NORMAL_AXIS Y_AXIS
|
|
|
|
#define CORE_AXIS_2 C_AXIS
|
|
|
|
#elif CORE_IS_YZ
|
|
|
|
#define NORMAL_AXIS X_AXIS
|
|
|
|
#define CORE_AXIS_1 B_AXIS
|
|
|
|
#define CORE_AXIS_2 C_AXIS
|
|
|
|
#endif
|
|
|
|
#if (ENABLED(COREYX) || ENABLED(COREZX) || ENABLED(COREZY))
|
|
|
|
#define CORESIGN(n) (-(n))
|
|
|
|
#else
|
|
|
|
#define CORESIGN(n) (n)
|
|
|
|
#endif
|
2016-03-11 05:35:44 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-16 07:27:50 +00:00
|
|
|
/**
|
|
|
|
* No adjustable bed on non-cartesians
|
|
|
|
*/
|
|
|
|
#if IS_KINEMATIC
|
|
|
|
#undef LEVEL_BED_CORNERS
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
2016-09-12 01:11:30 +00:00
|
|
|
* SCARA cannot use SLOWDOWN and requires QUICKHOME
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2016-09-12 01:11:30 +00:00
|
|
|
#if IS_SCARA
|
2015-03-21 22:40:20 +00:00
|
|
|
#undef SLOWDOWN
|
2016-09-12 01:11:30 +00:00
|
|
|
#define QUICK_HOME
|
2015-03-21 22:40:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2016-07-29 02:51:48 +00:00
|
|
|
* Set the home position based on settings or manual overrides
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2016-07-29 02:51:48 +00:00
|
|
|
#ifdef MANUAL_X_HOME_POS
|
2015-03-21 22:40:20 +00:00
|
|
|
#define X_HOME_POS MANUAL_X_HOME_POS
|
2016-07-29 02:51:48 +00:00
|
|
|
#elif ENABLED(BED_CENTER_AT_0_0)
|
2016-07-30 10:34:46 +00:00
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#define X_HOME_POS 0
|
|
|
|
#else
|
2017-07-22 03:54:39 +00:00
|
|
|
#define X_HOME_POS ((X_BED_SIZE) * (X_HOME_DIR) * 0.5)
|
2016-07-30 10:34:46 +00:00
|
|
|
#endif
|
2016-07-29 02:51:48 +00:00
|
|
|
#else
|
2016-07-30 10:34:46 +00:00
|
|
|
#if ENABLED(DELTA)
|
2017-07-22 03:54:39 +00:00
|
|
|
#define X_HOME_POS (X_MIN_POS + (X_BED_SIZE) * 0.5)
|
2016-07-30 10:34:46 +00:00
|
|
|
#else
|
|
|
|
#define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
|
|
|
|
#endif
|
2016-07-29 02:51:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MANUAL_Y_HOME_POS
|
2015-03-21 22:40:20 +00:00
|
|
|
#define Y_HOME_POS MANUAL_Y_HOME_POS
|
2016-07-29 02:51:48 +00:00
|
|
|
#elif ENABLED(BED_CENTER_AT_0_0)
|
2016-07-30 10:34:46 +00:00
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#define Y_HOME_POS 0
|
|
|
|
#else
|
2017-07-22 03:54:39 +00:00
|
|
|
#define Y_HOME_POS ((Y_BED_SIZE) * (Y_HOME_DIR) * 0.5)
|
2016-07-30 10:34:46 +00:00
|
|
|
#endif
|
2016-07-29 02:51:48 +00:00
|
|
|
#else
|
2016-07-30 10:34:46 +00:00
|
|
|
#if ENABLED(DELTA)
|
2017-07-22 03:54:39 +00:00
|
|
|
#define Y_HOME_POS (Y_MIN_POS + (Y_BED_SIZE) * 0.5)
|
2016-07-30 10:34:46 +00:00
|
|
|
#else
|
|
|
|
#define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
|
|
|
|
#endif
|
2016-07-29 02:51:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MANUAL_Z_HOME_POS
|
2015-03-21 22:40:20 +00:00
|
|
|
#define Z_HOME_POS MANUAL_Z_HOME_POS
|
2016-07-29 02:51:48 +00:00
|
|
|
#else
|
2015-03-21 22:40:20 +00:00
|
|
|
#define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
|
2016-07-29 02:51:48 +00:00
|
|
|
#endif
|
2015-03-21 22:40:20 +00:00
|
|
|
|
2017-05-01 16:05:35 +00:00
|
|
|
/**
|
|
|
|
* If DELTA_HEIGHT isn't defined use the old setting
|
|
|
|
*/
|
|
|
|
#if ENABLED(DELTA) && !defined(DELTA_HEIGHT)
|
|
|
|
#define DELTA_HEIGHT Z_HOME_POS
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
2016-06-22 21:03:22 +00:00
|
|
|
* Auto Bed Leveling and Z Probe Repeatability Test
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2016-08-30 18:29:13 +00:00
|
|
|
#define HOMING_Z_WITH_PROBE (HAS_BED_PROBE && Z_HOME_DIR < 0 && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN))
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
/**
|
2016-06-23 00:48:41 +00:00
|
|
|
* Z Sled Probe requires Z_SAFE_HOMING
|
2015-10-03 06:08:58 +00:00
|
|
|
*/
|
2015-07-23 01:23:23 +00:00
|
|
|
#if ENABLED(Z_PROBE_SLED)
|
2015-05-11 21:22:19 +00:00
|
|
|
#define Z_SAFE_HOMING
|
|
|
|
#endif
|
2015-10-03 06:08:58 +00:00
|
|
|
|
2016-07-28 06:25:56 +00:00
|
|
|
/**
|
2016-08-09 01:06:11 +00:00
|
|
|
* DELTA should ignore Z_SAFE_HOMING and SLOWDOWN
|
2016-07-28 06:25:56 +00:00
|
|
|
*/
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#undef Z_SAFE_HOMING
|
2016-08-09 01:06:11 +00:00
|
|
|
#undef SLOWDOWN
|
2016-07-28 06:25:56 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-23 00:48:41 +00:00
|
|
|
/**
|
|
|
|
* Safe Homing Options
|
|
|
|
*/
|
|
|
|
#if ENABLED(Z_SAFE_HOMING)
|
|
|
|
#ifndef Z_SAFE_HOMING_X_POINT
|
2017-07-22 03:54:39 +00:00
|
|
|
#define Z_SAFE_HOMING_X_POINT X_CENTER
|
2016-06-23 00:48:41 +00:00
|
|
|
#endif
|
|
|
|
#ifndef Z_SAFE_HOMING_Y_POINT
|
2017-07-22 03:54:39 +00:00
|
|
|
#define Z_SAFE_HOMING_Y_POINT Y_CENTER
|
2016-06-23 00:48:41 +00:00
|
|
|
#endif
|
2016-08-21 08:10:55 +00:00
|
|
|
#define X_TILT_FULCRUM Z_SAFE_HOMING_X_POINT
|
|
|
|
#define Y_TILT_FULCRUM Z_SAFE_HOMING_Y_POINT
|
|
|
|
#else
|
|
|
|
#define X_TILT_FULCRUM X_HOME_POS
|
|
|
|
#define Y_TILT_FULCRUM Y_HOME_POS
|
2016-06-23 00:48:41 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-07 11:48:14 +00:00
|
|
|
/**
|
2016-05-10 13:03:34 +00:00
|
|
|
* Host keep alive
|
2016-03-07 11:48:14 +00:00
|
|
|
*/
|
2016-05-10 13:05:33 +00:00
|
|
|
#ifndef DEFAULT_KEEPALIVE_INTERVAL
|
|
|
|
#define DEFAULT_KEEPALIVE_INTERVAL 2
|
2016-03-07 11:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
/**
|
|
|
|
* Hidden options for developer
|
|
|
|
*/
|
2017-10-07 18:34:25 +00:00
|
|
|
// Double stepping starts at STEP_DOUBLER_FREQUENCY + 1, quad stepping starts at STEP_DOUBLER_FREQUENCY * 2 + 1
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifndef STEP_DOUBLER_FREQUENCY
|
2017-10-09 09:25:18 +00:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2017-06-17 23:36:10 +00:00
|
|
|
#define STEP_DOUBLER_FREQUENCY 60000 // Hz
|
|
|
|
#else
|
|
|
|
#define STEP_DOUBLER_FREQUENCY 80000 // Hz
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
// Disable double / quad stepping
|
|
|
|
//#define DISABLE_MULTI_STEPPING
|
|
|
|
#endif
|
|
|
|
|
2017-07-24 17:13:25 +00:00
|
|
|
/**
|
|
|
|
* Provide a MAX_AUTORETRACT for older configs
|
|
|
|
*/
|
|
|
|
#if ENABLED(FWRETRACT) && !defined(MAX_AUTORETRACT)
|
|
|
|
#define MAX_AUTORETRACT 99
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
|
|
|
* MAX_STEP_FREQUENCY differs for TOSHIBA
|
|
|
|
*/
|
2015-07-23 01:23:23 +00:00
|
|
|
#if ENABLED(CONFIG_STEPPERS_TOSHIBA)
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
#define MAX_STEP_FREQUENCY STEP_DOUBLER_FREQUENCY // Max step frequency for Toshiba Stepper Controllers, 96kHz is close to maximum for an Arduino Due
|
|
|
|
#else
|
|
|
|
#define MAX_STEP_FREQUENCY 10000 // Max step frequency for Toshiba Stepper Controllers
|
|
|
|
#endif
|
2015-03-21 22:40:20 +00:00
|
|
|
#else
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
#define MAX_STEP_FREQUENCY (STEP_DOUBLER_FREQUENCY * 4) // Max step frequency for the Due is approx. 330kHz
|
|
|
|
#else
|
|
|
|
#define MAX_STEP_FREQUENCY 40000 // Max step frequency for Ultimaker (5000 pps / half step)
|
|
|
|
#endif
|
2015-03-21 22:40:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// MS1 MS2 Stepper Driver Microstepping mode table
|
|
|
|
#define MICROSTEP1 LOW,LOW
|
|
|
|
#define MICROSTEP2 HIGH,LOW
|
|
|
|
#define MICROSTEP4 LOW,HIGH
|
|
|
|
#define MICROSTEP8 HIGH,HIGH
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef __SAM3X8E__
|
|
|
|
#if MB(ALLIGATOR)
|
|
|
|
#define MICROSTEP16 LOW,LOW
|
|
|
|
#define MICROSTEP32 HIGH,HIGH
|
|
|
|
#else
|
|
|
|
#define MICROSTEP16 HIGH,HIGH
|
|
|
|
#endif
|
|
|
|
#else
|
2015-03-21 22:40:20 +00:00
|
|
|
#define MICROSTEP16 HIGH,HIGH
|
2017-06-17 23:36:10 +00:00
|
|
|
#endif
|
2015-03-21 22:40:20 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-09 09:25:18 +00:00
|
|
|
* Override here because this is set in Configuration_adv.h
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2015-07-23 01:23:23 +00:00
|
|
|
#if ENABLED(ULTIPANEL) && DISABLED(ELB_FULL_GRAPHIC_CONTROLLER)
|
2015-07-31 23:40:50 +00:00
|
|
|
#undef SD_DETECT_INVERTED
|
2015-03-21 22:40:20 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-21 01:48:16 +00:00
|
|
|
/**
|
|
|
|
* Set defaults for missing (newer) options
|
|
|
|
*/
|
|
|
|
#ifndef DISABLE_INACTIVE_X
|
|
|
|
#define DISABLE_INACTIVE_X DISABLE_X
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_INACTIVE_Y
|
|
|
|
#define DISABLE_INACTIVE_Y DISABLE_Y
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_INACTIVE_Z
|
|
|
|
#define DISABLE_INACTIVE_Z DISABLE_Z
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_INACTIVE_E
|
|
|
|
#define DISABLE_INACTIVE_E DISABLE_E
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
// Power Signal Control Definitions
|
|
|
|
// By default use ATX definition
|
|
|
|
#ifndef POWER_SUPPLY
|
|
|
|
#define POWER_SUPPLY 1
|
|
|
|
#endif
|
2015-03-30 23:52:27 +00:00
|
|
|
#if (POWER_SUPPLY == 1) // 1 = ATX
|
2015-03-21 22:40:20 +00:00
|
|
|
#define PS_ON_AWAKE LOW
|
|
|
|
#define PS_ON_ASLEEP HIGH
|
2015-03-30 23:52:27 +00:00
|
|
|
#elif (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
|
2015-03-21 22:40:20 +00:00
|
|
|
#define PS_ON_AWAKE HIGH
|
|
|
|
#define PS_ON_ASLEEP LOW
|
|
|
|
#endif
|
2015-04-03 22:31:35 +00:00
|
|
|
#define HAS_POWER_SWITCH (POWER_SUPPLY > 0 && PIN_EXISTS(PS_ON))
|
2015-03-21 22:40:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Temp Sensor defines
|
|
|
|
*/
|
2016-03-08 14:58:11 +00:00
|
|
|
#if TEMP_SENSOR_0 == -3
|
|
|
|
#define HEATER_0_USES_MAX6675
|
|
|
|
#define MAX6675_IS_MAX31855
|
2016-10-16 16:30:04 +00:00
|
|
|
#define MAX6675_TMIN -270
|
|
|
|
#define MAX6675_TMAX 1800
|
2016-03-08 14:58:11 +00:00
|
|
|
#elif TEMP_SENSOR_0 == -2
|
2015-03-21 22:40:20 +00:00
|
|
|
#define HEATER_0_USES_MAX6675
|
2016-10-16 16:30:04 +00:00
|
|
|
#define MAX6675_TMIN 0
|
|
|
|
#define MAX6675_TMAX 1024
|
2015-03-21 22:40:20 +00:00
|
|
|
#elif TEMP_SENSOR_0 == -1
|
|
|
|
#define HEATER_0_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_0 == 0
|
|
|
|
#undef HEATER_0_MINTEMP
|
|
|
|
#undef HEATER_0_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_0 > 0
|
|
|
|
#define THERMISTORHEATER_0 TEMP_SENSOR_0
|
|
|
|
#define HEATER_0_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2016-04-03 23:19:17 +00:00
|
|
|
#if TEMP_SENSOR_1 <= -2
|
2016-05-13 12:10:23 +00:00
|
|
|
#error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_1"
|
2016-04-03 23:19:17 +00:00
|
|
|
#elif TEMP_SENSOR_1 == -1
|
2015-03-21 22:40:20 +00:00
|
|
|
#define HEATER_1_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_1 == 0
|
|
|
|
#undef HEATER_1_MINTEMP
|
|
|
|
#undef HEATER_1_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_1 > 0
|
|
|
|
#define THERMISTORHEATER_1 TEMP_SENSOR_1
|
|
|
|
#define HEATER_1_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2016-04-03 23:19:17 +00:00
|
|
|
#if TEMP_SENSOR_2 <= -2
|
2016-05-13 12:10:23 +00:00
|
|
|
#error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_2"
|
2016-04-03 23:19:17 +00:00
|
|
|
#elif TEMP_SENSOR_2 == -1
|
2015-03-21 22:40:20 +00:00
|
|
|
#define HEATER_2_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_2 == 0
|
|
|
|
#undef HEATER_2_MINTEMP
|
|
|
|
#undef HEATER_2_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_2 > 0
|
|
|
|
#define THERMISTORHEATER_2 TEMP_SENSOR_2
|
|
|
|
#define HEATER_2_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2016-04-03 23:19:17 +00:00
|
|
|
#if TEMP_SENSOR_3 <= -2
|
2016-05-13 12:10:23 +00:00
|
|
|
#error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_3"
|
2016-04-03 23:19:17 +00:00
|
|
|
#elif TEMP_SENSOR_3 == -1
|
2015-03-21 22:40:20 +00:00
|
|
|
#define HEATER_3_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_3 == 0
|
|
|
|
#undef HEATER_3_MINTEMP
|
|
|
|
#undef HEATER_3_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_3 > 0
|
|
|
|
#define THERMISTORHEATER_3 TEMP_SENSOR_3
|
|
|
|
#define HEATER_3_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2017-04-06 21:45:29 +00:00
|
|
|
#if TEMP_SENSOR_4 <= -2
|
|
|
|
#error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_4"
|
|
|
|
#elif TEMP_SENSOR_4 == -1
|
|
|
|
#define HEATER_4_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_4 == 0
|
|
|
|
#undef HEATER_4_MINTEMP
|
|
|
|
#undef HEATER_4_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_4 > 0
|
|
|
|
#define THERMISTORHEATER_4 TEMP_SENSOR_4
|
|
|
|
#define HEATER_4_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2016-04-03 23:19:17 +00:00
|
|
|
#if TEMP_SENSOR_BED <= -2
|
2016-05-13 12:10:23 +00:00
|
|
|
#error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_BED"
|
2016-04-03 23:19:17 +00:00
|
|
|
#elif TEMP_SENSOR_BED == -1
|
2015-03-21 22:40:20 +00:00
|
|
|
#define BED_USES_AD595
|
|
|
|
#elif TEMP_SENSOR_BED == 0
|
|
|
|
#undef BED_MINTEMP
|
|
|
|
#undef BED_MAXTEMP
|
|
|
|
#elif TEMP_SENSOR_BED > 0
|
|
|
|
#define THERMISTORBED TEMP_SENSOR_BED
|
|
|
|
#define BED_USES_THERMISTOR
|
|
|
|
#endif
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef __SAM3X8E__
|
|
|
|
#define HEATER_USES_AD595 (ENABLED(HEATER_0_USES_AD595) || ENABLED(HEATER_1_USES_AD595) || ENABLED(HEATER_2_USES_AD595) || ENABLED(HEATER_3_USES_AD595))
|
|
|
|
#endif
|
|
|
|
|
2016-04-20 01:09:29 +00:00
|
|
|
/**
|
|
|
|
* Flags for PID handling
|
|
|
|
*/
|
|
|
|
#define HAS_PID_HEATING (ENABLED(PIDTEMP) || ENABLED(PIDTEMPBED))
|
|
|
|
#define HAS_PID_FOR_BOTH (ENABLED(PIDTEMP) && ENABLED(PIDTEMPBED))
|
|
|
|
|
2016-06-28 21:13:49 +00:00
|
|
|
/**
|
|
|
|
* Default hotend offsets, if not defined
|
|
|
|
*/
|
|
|
|
#if HOTENDS > 1
|
|
|
|
#ifndef HOTEND_OFFSET_X
|
|
|
|
#define HOTEND_OFFSET_X { 0 } // X offsets for each extruder
|
|
|
|
#endif
|
|
|
|
#ifndef HOTEND_OFFSET_Y
|
|
|
|
#define HOTEND_OFFSET_Y { 0 } // Y offsets for each extruder
|
|
|
|
#endif
|
2017-05-12 19:09:40 +00:00
|
|
|
#if !defined(HOTEND_OFFSET_Z) && (ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE))
|
2016-06-28 21:13:49 +00:00
|
|
|
#define HOTEND_OFFSET_Z { 0 }
|
|
|
|
#endif
|
2016-05-27 00:43:20 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
|
|
|
* ARRAY_BY_EXTRUDERS based on EXTRUDERS
|
|
|
|
*/
|
2016-10-13 13:29:29 +00:00
|
|
|
#define ARRAY_BY_EXTRUDERS(...) ARRAY_N(EXTRUDERS, __VA_ARGS__)
|
2016-07-02 03:27:55 +00:00
|
|
|
#define ARRAY_BY_EXTRUDERS1(v1) ARRAY_BY_EXTRUDERS(v1, v1, v1, v1, v1, v1)
|
2015-07-24 01:24:37 +00:00
|
|
|
|
2016-05-20 22:48:27 +00:00
|
|
|
/**
|
2016-05-27 00:43:20 +00:00
|
|
|
* ARRAY_BY_HOTENDS based on HOTENDS
|
2016-05-20 22:48:27 +00:00
|
|
|
*/
|
2016-10-13 13:29:29 +00:00
|
|
|
#define ARRAY_BY_HOTENDS(...) ARRAY_N(HOTENDS, __VA_ARGS__)
|
2016-07-02 03:27:55 +00:00
|
|
|
#define ARRAY_BY_HOTENDS1(v1) ARRAY_BY_HOTENDS(v1, v1, v1, v1, v1, v1)
|
2016-05-27 00:43:20 +00:00
|
|
|
|
2016-03-02 10:05:21 +00:00
|
|
|
/**
|
|
|
|
* Z_DUAL_ENDSTOPS endstop reassignment
|
|
|
|
*/
|
|
|
|
#if ENABLED(Z_DUAL_ENDSTOPS)
|
|
|
|
#define _XMIN_ 100
|
|
|
|
#define _YMIN_ 200
|
|
|
|
#define _ZMIN_ 300
|
|
|
|
#define _XMAX_ 101
|
|
|
|
#define _YMAX_ 201
|
|
|
|
#define _ZMAX_ 301
|
2016-10-27 13:00:15 +00:00
|
|
|
#if Z2_USE_ENDSTOP == _XMIN_
|
2016-08-07 23:54:34 +00:00
|
|
|
#define USE_XMIN_PLUG
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _XMAX_
|
|
|
|
#define USE_XMAX_PLUG
|
2016-06-01 08:14:58 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMIN_
|
2016-08-07 23:54:34 +00:00
|
|
|
#define USE_YMIN_PLUG
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMAX_
|
|
|
|
#define USE_YMAX_PLUG
|
2016-06-01 08:14:58 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMIN_
|
2016-08-07 23:54:34 +00:00
|
|
|
#define USE_ZMIN_PLUG
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMAX_
|
|
|
|
#define USE_ZMAX_PLUG
|
2016-08-07 23:54:34 +00:00
|
|
|
#endif
|
|
|
|
#if Z_HOME_DIR > 0
|
2016-10-27 13:00:15 +00:00
|
|
|
#if Z2_USE_ENDSTOP == _XMIN_
|
2016-08-07 23:54:34 +00:00
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING X_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN X_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _XMAX_
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING X_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN X_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMIN_
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING Y_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN Y_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMAX_
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING Y_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN Y_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMIN_
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING Z_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN Z_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMAX_
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING Z_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MAX_PIN Z_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#else
|
|
|
|
#define Z2_MAX_ENDSTOP_INVERTING false
|
|
|
|
#endif
|
2016-06-01 08:14:58 +00:00
|
|
|
#else
|
2016-10-27 13:00:15 +00:00
|
|
|
#if Z2_USE_ENDSTOP == _XMIN_
|
2016-08-07 23:54:34 +00:00
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING X_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN X_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _XMAX_
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING X_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN X_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMIN_
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING Y_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN Y_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _YMAX_
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING Y_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN Y_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMIN_
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING Z_MIN_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN Z_MIN_PIN
|
2016-10-27 13:00:15 +00:00
|
|
|
#elif Z2_USE_ENDSTOP == _ZMAX_
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING Z_MAX_ENDSTOP_INVERTING
|
|
|
|
#define Z2_MIN_PIN Z_MAX_PIN
|
2016-08-07 23:54:34 +00:00
|
|
|
#else
|
|
|
|
#define Z2_MIN_ENDSTOP_INVERTING false
|
|
|
|
#endif
|
2016-06-01 08:14:58 +00:00
|
|
|
#endif
|
2016-03-02 10:05:21 +00:00
|
|
|
#endif
|
|
|
|
|
2017-05-01 07:07:54 +00:00
|
|
|
// Is an endstop plug used for the Z2 endstop or the bed probe?
|
|
|
|
#define IS_Z2_OR_PROBE(A,M) ( \
|
|
|
|
(ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP == _##A##M##_) \
|
|
|
|
|| (ENABLED(Z_MIN_PROBE_ENDSTOP) && Z_MIN_PROBE_PIN == A##_##M##_PIN ) )
|
2016-10-27 13:00:15 +00:00
|
|
|
|
2016-08-08 00:05:51 +00:00
|
|
|
/**
|
|
|
|
* Set ENDSTOPPULLUPS for active endstop switches
|
|
|
|
*/
|
|
|
|
#if ENABLED(ENDSTOPPULLUPS)
|
|
|
|
#if ENABLED(USE_XMAX_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_XMAX
|
|
|
|
#endif
|
|
|
|
#if ENABLED(USE_YMAX_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_YMAX
|
|
|
|
#endif
|
|
|
|
#if ENABLED(USE_ZMAX_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_ZMAX
|
|
|
|
#endif
|
|
|
|
#if ENABLED(USE_XMIN_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_XMIN
|
|
|
|
#endif
|
|
|
|
#if ENABLED(USE_YMIN_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_YMIN
|
|
|
|
#endif
|
|
|
|
#if ENABLED(USE_ZMIN_PLUG)
|
|
|
|
#define ENDSTOPPULLUP_ZMIN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
2015-04-03 22:31:35 +00:00
|
|
|
* Shorthand for pin tests, used wherever needed
|
2015-03-21 22:40:20 +00:00
|
|
|
*/
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Steppers
|
|
|
|
#define HAS_X_ENABLE (PIN_EXISTS(X_ENABLE))
|
|
|
|
#define HAS_X_DIR (PIN_EXISTS(X_DIR))
|
|
|
|
#define HAS_X_STEP (PIN_EXISTS(X_STEP))
|
|
|
|
#define HAS_X_MICROSTEPS (PIN_EXISTS(X_MS1))
|
|
|
|
|
|
|
|
#define HAS_X2_ENABLE (PIN_EXISTS(X2_ENABLE))
|
|
|
|
#define HAS_X2_DIR (PIN_EXISTS(X2_DIR))
|
|
|
|
#define HAS_X2_STEP (PIN_EXISTS(X2_STEP))
|
|
|
|
#define HAS_Y_MICROSTEPS (PIN_EXISTS(Y_MS1))
|
|
|
|
|
|
|
|
#define HAS_Y_ENABLE (PIN_EXISTS(Y_ENABLE))
|
|
|
|
#define HAS_Y_DIR (PIN_EXISTS(Y_DIR))
|
|
|
|
#define HAS_Y_STEP (PIN_EXISTS(Y_STEP))
|
|
|
|
#define HAS_Z_MICROSTEPS (PIN_EXISTS(Z_MS1))
|
|
|
|
|
|
|
|
#define HAS_Y2_ENABLE (PIN_EXISTS(Y2_ENABLE))
|
|
|
|
#define HAS_Y2_DIR (PIN_EXISTS(Y2_DIR))
|
|
|
|
#define HAS_Y2_STEP (PIN_EXISTS(Y2_STEP))
|
|
|
|
|
|
|
|
#define HAS_Z_ENABLE (PIN_EXISTS(Z_ENABLE))
|
|
|
|
#define HAS_Z_DIR (PIN_EXISTS(Z_DIR))
|
|
|
|
#define HAS_Z_STEP (PIN_EXISTS(Z_STEP))
|
|
|
|
|
|
|
|
#define HAS_Z2_ENABLE (PIN_EXISTS(Z2_ENABLE))
|
|
|
|
#define HAS_Z2_DIR (PIN_EXISTS(Z2_DIR))
|
|
|
|
#define HAS_Z2_STEP (PIN_EXISTS(Z2_STEP))
|
|
|
|
|
|
|
|
// Extruder steppers and solenoids
|
|
|
|
#define HAS_E0_ENABLE (PIN_EXISTS(E0_ENABLE))
|
|
|
|
#define HAS_E0_DIR (PIN_EXISTS(E0_DIR))
|
|
|
|
#define HAS_E0_STEP (PIN_EXISTS(E0_STEP))
|
|
|
|
#define HAS_E0_MICROSTEPS (PIN_EXISTS(E0_MS1))
|
|
|
|
#define HAS_SOLENOID_0 (PIN_EXISTS(SOL0))
|
|
|
|
|
|
|
|
#define HAS_E1_ENABLE (PIN_EXISTS(E1_ENABLE))
|
|
|
|
#define HAS_E1_DIR (PIN_EXISTS(E1_DIR))
|
|
|
|
#define HAS_E1_STEP (PIN_EXISTS(E1_STEP))
|
|
|
|
#define HAS_E1_MICROSTEPS (PIN_EXISTS(E1_MS1))
|
|
|
|
#define HAS_SOLENOID_1 (PIN_EXISTS(SOL1))
|
|
|
|
|
|
|
|
#define HAS_E2_ENABLE (PIN_EXISTS(E2_ENABLE))
|
|
|
|
#define HAS_E2_DIR (PIN_EXISTS(E2_DIR))
|
|
|
|
#define HAS_E2_STEP (PIN_EXISTS(E2_STEP))
|
|
|
|
#define HAS_E2_MICROSTEPS (PIN_EXISTS(E2_MS1))
|
|
|
|
#define HAS_SOLENOID_2 (PIN_EXISTS(SOL2))
|
|
|
|
|
|
|
|
#define HAS_E3_ENABLE (PIN_EXISTS(E3_ENABLE))
|
|
|
|
#define HAS_E3_DIR (PIN_EXISTS(E3_DIR))
|
|
|
|
#define HAS_E3_STEP (PIN_EXISTS(E3_STEP))
|
|
|
|
#define HAS_E3_MICROSTEPS (PIN_EXISTS(E3_MS1))
|
|
|
|
#define HAS_SOLENOID_3 (PIN_EXISTS(SOL3))
|
|
|
|
|
|
|
|
#define HAS_E4_ENABLE (PIN_EXISTS(E4_ENABLE))
|
|
|
|
#define HAS_E4_DIR (PIN_EXISTS(E4_DIR))
|
|
|
|
#define HAS_E4_STEP (PIN_EXISTS(E4_STEP))
|
|
|
|
#define HAS_E4_MICROSTEPS (PIN_EXISTS(E4_MS1))
|
|
|
|
#define HAS_SOLENOID_4 (PIN_EXISTS(SOL4))
|
|
|
|
|
|
|
|
// Endstops and bed probe
|
2017-05-01 07:07:54 +00:00
|
|
|
#define HAS_X_MIN (PIN_EXISTS(X_MIN) && !IS_Z2_OR_PROBE(X,MIN))
|
|
|
|
#define HAS_X_MAX (PIN_EXISTS(X_MAX) && !IS_Z2_OR_PROBE(X,MAX))
|
|
|
|
#define HAS_Y_MIN (PIN_EXISTS(Y_MIN) && !IS_Z2_OR_PROBE(Y,MIN))
|
|
|
|
#define HAS_Y_MAX (PIN_EXISTS(Y_MAX) && !IS_Z2_OR_PROBE(Y,MAX))
|
|
|
|
#define HAS_Z_MIN (PIN_EXISTS(Z_MIN) && !IS_Z2_OR_PROBE(Z,MIN))
|
|
|
|
#define HAS_Z_MAX (PIN_EXISTS(Z_MAX) && !IS_Z2_OR_PROBE(Z,MAX))
|
2017-04-14 23:00:33 +00:00
|
|
|
#define HAS_Z2_MIN (PIN_EXISTS(Z2_MIN))
|
|
|
|
#define HAS_Z2_MAX (PIN_EXISTS(Z2_MAX))
|
|
|
|
#define HAS_Z_MIN_PROBE_PIN (PIN_EXISTS(Z_MIN_PROBE))
|
|
|
|
|
|
|
|
// Thermistors
|
2016-04-03 23:19:17 +00:00
|
|
|
#define HAS_TEMP_0 (PIN_EXISTS(TEMP_0) && TEMP_SENSOR_0 != 0 && TEMP_SENSOR_0 > -2)
|
|
|
|
#define HAS_TEMP_1 (PIN_EXISTS(TEMP_1) && TEMP_SENSOR_1 != 0 && TEMP_SENSOR_1 > -2)
|
|
|
|
#define HAS_TEMP_2 (PIN_EXISTS(TEMP_2) && TEMP_SENSOR_2 != 0 && TEMP_SENSOR_2 > -2)
|
|
|
|
#define HAS_TEMP_3 (PIN_EXISTS(TEMP_3) && TEMP_SENSOR_3 != 0 && TEMP_SENSOR_3 > -2)
|
2017-04-06 21:45:29 +00:00
|
|
|
#define HAS_TEMP_4 (PIN_EXISTS(TEMP_4) && TEMP_SENSOR_4 != 0 && TEMP_SENSOR_4 > -2)
|
2017-04-14 23:00:33 +00:00
|
|
|
#define HAS_TEMP_HOTEND (HAS_TEMP_0 || ENABLED(HEATER_0_USES_MAX6675))
|
2016-04-03 23:19:17 +00:00
|
|
|
#define HAS_TEMP_BED (PIN_EXISTS(TEMP_BED) && TEMP_SENSOR_BED != 0 && TEMP_SENSOR_BED > -2)
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Heaters
|
2015-04-03 22:31:35 +00:00
|
|
|
#define HAS_HEATER_0 (PIN_EXISTS(HEATER_0))
|
|
|
|
#define HAS_HEATER_1 (PIN_EXISTS(HEATER_1))
|
|
|
|
#define HAS_HEATER_2 (PIN_EXISTS(HEATER_2))
|
|
|
|
#define HAS_HEATER_3 (PIN_EXISTS(HEATER_3))
|
2017-04-06 21:45:29 +00:00
|
|
|
#define HAS_HEATER_4 (PIN_EXISTS(HEATER_4))
|
2015-04-03 22:31:35 +00:00
|
|
|
#define HAS_HEATER_BED (PIN_EXISTS(HEATER_BED))
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Thermal protection
|
|
|
|
#define HAS_THERMALLY_PROTECTED_BED (ENABLED(THERMAL_PROTECTION_BED) && HAS_TEMP_BED && HAS_HEATER_BED)
|
|
|
|
#define WATCH_HOTENDS (ENABLED(THERMAL_PROTECTION_HOTENDS) && WATCH_TEMP_PERIOD > 0)
|
|
|
|
#define WATCH_THE_BED (HAS_THERMALLY_PROTECTED_BED && WATCH_BED_TEMP_PERIOD > 0)
|
|
|
|
|
|
|
|
// Auto fans
|
2016-10-22 23:25:42 +00:00
|
|
|
#define HAS_AUTO_FAN_0 (PIN_EXISTS(E0_AUTO_FAN))
|
|
|
|
#define HAS_AUTO_FAN_1 (HOTENDS > 1 && PIN_EXISTS(E1_AUTO_FAN))
|
|
|
|
#define HAS_AUTO_FAN_2 (HOTENDS > 2 && PIN_EXISTS(E2_AUTO_FAN))
|
|
|
|
#define HAS_AUTO_FAN_3 (HOTENDS > 3 && PIN_EXISTS(E3_AUTO_FAN))
|
2017-04-06 21:45:29 +00:00
|
|
|
#define HAS_AUTO_FAN_4 (HOTENDS > 4 && PIN_EXISTS(E4_AUTO_FAN))
|
2015-03-27 19:22:59 +00:00
|
|
|
#define HAS_AUTO_FAN (HAS_AUTO_FAN_0 || HAS_AUTO_FAN_1 || HAS_AUTO_FAN_2 || HAS_AUTO_FAN_3)
|
2016-10-22 23:25:42 +00:00
|
|
|
#define AUTO_1_IS_0 (E1_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_2_IS_0 (E2_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_2_IS_1 (E2_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_3_IS_0 (E3_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_3_IS_1 (E3_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_3_IS_2 (E3_AUTO_FAN_PIN == E2_AUTO_FAN_PIN)
|
2017-04-06 21:45:29 +00:00
|
|
|
#define AUTO_4_IS_0 (E4_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_4_IS_1 (E4_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_4_IS_2 (E4_AUTO_FAN_PIN == E2_AUTO_FAN_PIN)
|
|
|
|
#define AUTO_4_IS_3 (E4_AUTO_FAN_PIN == E3_AUTO_FAN_PIN)
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Other fans
|
2016-03-06 02:27:45 +00:00
|
|
|
#define HAS_FAN0 (PIN_EXISTS(FAN))
|
2017-05-03 01:18:31 +00:00
|
|
|
#define HAS_FAN1 (PIN_EXISTS(FAN1) && CONTROLLER_FAN_PIN != FAN1_PIN && E0_AUTO_FAN_PIN != FAN1_PIN && E1_AUTO_FAN_PIN != FAN1_PIN && E2_AUTO_FAN_PIN != FAN1_PIN && E3_AUTO_FAN_PIN != FAN1_PIN)
|
|
|
|
#define HAS_FAN2 (PIN_EXISTS(FAN2) && CONTROLLER_FAN_PIN != FAN2_PIN && E0_AUTO_FAN_PIN != FAN2_PIN && E1_AUTO_FAN_PIN != FAN2_PIN && E2_AUTO_FAN_PIN != FAN2_PIN && E3_AUTO_FAN_PIN != FAN2_PIN)
|
|
|
|
#define HAS_CONTROLLER_FAN (PIN_EXISTS(CONTROLLER_FAN))
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Servos
|
2015-07-23 01:23:23 +00:00
|
|
|
#define HAS_SERVOS (defined(NUM_SERVOS) && NUM_SERVOS > 0)
|
2015-04-03 22:31:35 +00:00
|
|
|
#define HAS_SERVO_0 (PIN_EXISTS(SERVO0))
|
|
|
|
#define HAS_SERVO_1 (PIN_EXISTS(SERVO1))
|
|
|
|
#define HAS_SERVO_2 (PIN_EXISTS(SERVO2))
|
|
|
|
#define HAS_SERVO_3 (PIN_EXISTS(SERVO3))
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// Sensors
|
2016-03-30 03:28:23 +00:00
|
|
|
#define HAS_FILAMENT_WIDTH_SENSOR (PIN_EXISTS(FILWIDTH))
|
2016-06-20 02:25:09 +00:00
|
|
|
#define HAS_FIL_RUNOUT (PIN_EXISTS(FIL_RUNOUT))
|
2017-04-14 23:00:33 +00:00
|
|
|
|
|
|
|
// User Interface
|
2015-04-03 22:31:35 +00:00
|
|
|
#define HAS_HOME (PIN_EXISTS(HOME))
|
|
|
|
#define HAS_KILL (PIN_EXISTS(KILL))
|
|
|
|
#define HAS_SUICIDE (PIN_EXISTS(SUICIDE))
|
|
|
|
#define HAS_PHOTOGRAPH (PIN_EXISTS(PHOTOGRAPH))
|
2016-07-26 01:07:15 +00:00
|
|
|
#define HAS_BUZZER (PIN_EXISTS(BEEPER) || ENABLED(LCD_USE_I2C_BUZZER))
|
2017-04-07 18:52:05 +00:00
|
|
|
#define HAS_CASE_LIGHT (PIN_EXISTS(CASE_LIGHT) && ENABLED(CASE_LIGHT_ENABLE))
|
2015-03-21 22:40:20 +00:00
|
|
|
|
2017-04-14 23:00:33 +00:00
|
|
|
// Digital control
|
|
|
|
#define HAS_MICROSTEPS (HAS_X_MICROSTEPS || HAS_Y_MICROSTEPS || HAS_Z_MICROSTEPS || HAS_E0_MICROSTEPS || HAS_E1_MICROSTEPS || HAS_E2_MICROSTEPS || HAS_E3_MICROSTEPS || HAS_E4_MICROSTEPS)
|
|
|
|
#define HAS_STEPPER_RESET (PIN_EXISTS(STEPPER_RESET))
|
|
|
|
#define HAS_DIGIPOTSS (PIN_EXISTS(DIGIPOTSS))
|
2016-03-25 11:05:07 +00:00
|
|
|
#define HAS_MOTOR_CURRENT_PWM (PIN_EXISTS(MOTOR_CURRENT_PWM_XY) || PIN_EXISTS(MOTOR_CURRENT_PWM_Z) || PIN_EXISTS(MOTOR_CURRENT_PWM_E))
|
|
|
|
|
2016-07-26 01:07:15 +00:00
|
|
|
/**
|
2016-08-21 04:34:24 +00:00
|
|
|
* This setting is also used by M109 when trying to calculate
|
|
|
|
* a ballpark safe margin to prevent wait-forever situation.
|
2016-07-26 01:07:15 +00:00
|
|
|
*/
|
|
|
|
#ifndef EXTRUDE_MINTEMP
|
2016-08-21 04:34:24 +00:00
|
|
|
#define EXTRUDE_MINTEMP 170
|
2016-07-26 01:07:15 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 22:40:20 +00:00
|
|
|
/**
|
|
|
|
* Helper Macros for heaters and extruder fan
|
|
|
|
*/
|
|
|
|
#define WRITE_HEATER_0P(v) WRITE(HEATER_0_PIN, v)
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)
|
2015-03-21 22:40:20 +00:00
|
|
|
#define WRITE_HEATER_1(v) WRITE(HEATER_1_PIN, v)
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 2
|
2015-03-21 22:40:20 +00:00
|
|
|
#define WRITE_HEATER_2(v) WRITE(HEATER_2_PIN, v)
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 3
|
2015-03-21 22:40:20 +00:00
|
|
|
#define WRITE_HEATER_3(v) WRITE(HEATER_3_PIN, v)
|
2017-04-06 21:45:29 +00:00
|
|
|
#if HOTENDS > 4
|
|
|
|
#define WRITE_HEATER_4(v) WRITE(HEATER_4_PIN, v)
|
|
|
|
#endif // HOTENDS > 4
|
|
|
|
#endif // HOTENDS > 3
|
|
|
|
#endif // HOTENDS > 2
|
|
|
|
#endif // HOTENDS > 1
|
2015-07-23 01:23:23 +00:00
|
|
|
#if ENABLED(HEATERS_PARALLEL)
|
2015-03-21 22:40:20 +00:00
|
|
|
#define WRITE_HEATER_0(v) { WRITE_HEATER_0P(v); WRITE_HEATER_1(v); }
|
|
|
|
#else
|
|
|
|
#define WRITE_HEATER_0(v) WRITE_HEATER_0P(v)
|
|
|
|
#endif
|
2017-07-06 17:10:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Heated bed requires settings
|
|
|
|
*/
|
2015-03-21 22:40:20 +00:00
|
|
|
#if HAS_HEATER_BED
|
2017-07-06 17:10:06 +00:00
|
|
|
#ifndef MAX_BED_POWER
|
|
|
|
#define MAX_BED_POWER 255
|
|
|
|
#endif
|
|
|
|
#ifndef HEATER_BED_INVERTING
|
|
|
|
#define HEATER_BED_INVERTING false
|
|
|
|
#endif
|
|
|
|
#define WRITE_HEATER_BED(v) WRITE(HEATER_BED_PIN, (v) ^ HEATER_BED_INVERTING)
|
2015-03-21 22:40:20 +00:00
|
|
|
#endif
|
2016-03-06 02:27:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Up to 3 PWM fans
|
|
|
|
*/
|
|
|
|
#if HAS_FAN2
|
|
|
|
#define FAN_COUNT 3
|
|
|
|
#elif HAS_FAN1
|
|
|
|
#define FAN_COUNT 2
|
|
|
|
#elif HAS_FAN0
|
|
|
|
#define FAN_COUNT 1
|
|
|
|
#else
|
|
|
|
#define FAN_COUNT 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_FAN0
|
2015-03-21 22:40:20 +00:00
|
|
|
#define WRITE_FAN(v) WRITE(FAN_PIN, v)
|
2016-03-06 02:27:45 +00:00
|
|
|
#define WRITE_FAN0(v) WRITE_FAN(v)
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN1
|
|
|
|
#define WRITE_FAN1(v) WRITE(FAN1_PIN, v)
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN2
|
|
|
|
#define WRITE_FAN2(v) WRITE(FAN2_PIN, v)
|
2015-03-21 22:40:20 +00:00
|
|
|
#endif
|
2016-03-06 02:27:45 +00:00
|
|
|
#define WRITE_FAN_N(n, v) WRITE_FAN##n(v)
|
2015-03-21 22:40:20 +00:00
|
|
|
|
2017-08-15 12:48:10 +00:00
|
|
|
/**
|
|
|
|
* Part Cooling fan multipliexer
|
|
|
|
*/
|
|
|
|
#define HAS_FANMUX PIN_EXISTS(FANMUX0)
|
|
|
|
|
2016-07-26 01:07:15 +00:00
|
|
|
/**
|
|
|
|
* Servos and probes
|
|
|
|
*/
|
2015-06-14 22:12:02 +00:00
|
|
|
|
2016-04-13 01:11:36 +00:00
|
|
|
#if HAS_SERVOS
|
2015-07-24 09:26:05 +00:00
|
|
|
#ifndef Z_ENDSTOP_SERVO_NR
|
|
|
|
#define Z_ENDSTOP_SERVO_NR -1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-05-04 03:15:18 +00:00
|
|
|
#define PROBE_PIN_CONFIGURED (HAS_Z_MIN_PROBE_PIN || (HAS_Z_MIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)))
|
2017-03-13 05:24:22 +00:00
|
|
|
#define HAS_BED_PROBE (PROBE_SELECTED && PROBE_PIN_CONFIGURED && DISABLED(PROBE_MANUALLY))
|
2015-12-03 13:19:29 +00:00
|
|
|
|
2016-07-06 01:56:17 +00:00
|
|
|
#if ENABLED(Z_PROBE_ALLEN_KEY)
|
|
|
|
#define PROBE_IS_TRIGGERED_WHEN_STOWED_TEST
|
|
|
|
#endif
|
|
|
|
|
2016-06-17 02:00:51 +00:00
|
|
|
/**
|
2016-06-15 01:03:17 +00:00
|
|
|
* Bed Probe dependencies
|
2016-06-17 02:00:51 +00:00
|
|
|
*/
|
|
|
|
#if HAS_BED_PROBE
|
2016-09-19 04:28:11 +00:00
|
|
|
#if ENABLED(ENDSTOPPULLUPS) && HAS_Z_MIN_PROBE_PIN
|
|
|
|
#define ENDSTOPPULLUP_ZMIN_PROBE
|
|
|
|
#endif
|
2016-06-17 02:00:51 +00:00
|
|
|
#ifndef Z_PROBE_OFFSET_RANGE_MIN
|
|
|
|
#define Z_PROBE_OFFSET_RANGE_MIN -20
|
|
|
|
#endif
|
|
|
|
#ifndef Z_PROBE_OFFSET_RANGE_MAX
|
|
|
|
#define Z_PROBE_OFFSET_RANGE_MAX 20
|
|
|
|
#endif
|
2016-06-22 09:38:50 +00:00
|
|
|
#ifndef XY_PROBE_SPEED
|
2016-07-20 00:11:57 +00:00
|
|
|
#ifdef HOMING_FEEDRATE_XY
|
|
|
|
#define XY_PROBE_SPEED HOMING_FEEDRATE_XY
|
2016-06-22 09:38:50 +00:00
|
|
|
#else
|
|
|
|
#define XY_PROBE_SPEED 4000
|
|
|
|
#endif
|
2016-06-17 02:00:51 +00:00
|
|
|
#endif
|
2016-09-20 08:49:42 +00:00
|
|
|
#if Z_CLEARANCE_BETWEEN_PROBES > Z_CLEARANCE_DEPLOY_PROBE
|
|
|
|
#define _Z_CLEARANCE_DEPLOY_PROBE Z_CLEARANCE_BETWEEN_PROBES
|
2016-07-06 03:09:30 +00:00
|
|
|
#else
|
2016-09-20 08:49:42 +00:00
|
|
|
#define _Z_CLEARANCE_DEPLOY_PROBE Z_CLEARANCE_DEPLOY_PROBE
|
2016-06-26 20:56:30 +00:00
|
|
|
#endif
|
2016-07-27 11:30:39 +00:00
|
|
|
#else
|
|
|
|
#undef X_PROBE_OFFSET_FROM_EXTRUDER
|
|
|
|
#undef Y_PROBE_OFFSET_FROM_EXTRUDER
|
|
|
|
#undef Z_PROBE_OFFSET_FROM_EXTRUDER
|
|
|
|
#define X_PROBE_OFFSET_FROM_EXTRUDER 0
|
|
|
|
#define Y_PROBE_OFFSET_FROM_EXTRUDER 0
|
|
|
|
#define Z_PROBE_OFFSET_FROM_EXTRUDER 0
|
2016-06-17 02:00:51 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-07 04:29:35 +00:00
|
|
|
/**
|
|
|
|
* Heater & Fan Pausing
|
|
|
|
*/
|
|
|
|
#if FAN_COUNT == 0
|
|
|
|
#undef PROBING_FANS_OFF
|
|
|
|
#endif
|
|
|
|
#define QUIET_PROBING (HAS_BED_PROBE && (ENABLED(PROBING_HEATERS_OFF) || ENABLED(PROBING_FANS_OFF) || DELAY_BEFORE_PROBING > 0))
|
|
|
|
#define HEATER_IDLE_HANDLER (ENABLED(ADVANCED_PAUSE_FEATURE) || ENABLED(PROBING_HEATERS_OFF))
|
|
|
|
|
2016-05-04 23:18:32 +00:00
|
|
|
/**
|
2017-10-14 12:18:09 +00:00
|
|
|
* Only constrain Z on DELTA / SCARA machines
|
|
|
|
*/
|
|
|
|
#if IS_KINEMATIC
|
|
|
|
#undef MIN_SOFTWARE_ENDSTOP_X
|
|
|
|
#undef MIN_SOFTWARE_ENDSTOP_Y
|
|
|
|
#undef MAX_SOFTWARE_ENDSTOP_X
|
|
|
|
#undef MAX_SOFTWARE_ENDSTOP_Y
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delta endstops, radius/rod trimmers, angle trimmers
|
2016-05-04 23:18:32 +00:00
|
|
|
*/
|
|
|
|
#if ENABLED(DELTA)
|
2017-04-18 12:43:25 +00:00
|
|
|
#ifndef DELTA_CALIBRATION_RADIUS
|
|
|
|
#define DELTA_CALIBRATION_RADIUS DELTA_PRINTABLE_RADIUS - 10
|
2016-05-04 23:18:32 +00:00
|
|
|
#endif
|
2017-04-18 12:43:25 +00:00
|
|
|
#ifndef DELTA_ENDSTOP_ADJ
|
2017-04-29 14:36:33 +00:00
|
|
|
#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }
|
2017-02-27 19:39:00 +00:00
|
|
|
#endif
|
2017-04-18 12:43:25 +00:00
|
|
|
#ifndef DELTA_TOWER_ANGLE_TRIM
|
2017-04-29 14:36:33 +00:00
|
|
|
#define DELTA_TOWER_ANGLE_TRIM {0, 0, 0}
|
2017-02-27 19:39:00 +00:00
|
|
|
#endif
|
2017-04-18 12:43:25 +00:00
|
|
|
#ifndef DELTA_RADIUS_TRIM_TOWER
|
2017-04-29 14:36:33 +00:00
|
|
|
#define DELTA_RADIUS_TRIM_TOWER {0, 0, 0}
|
2017-02-27 19:39:00 +00:00
|
|
|
#endif
|
2017-04-18 12:43:25 +00:00
|
|
|
#ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER
|
2017-04-29 14:36:33 +00:00
|
|
|
#define DELTA_DIAGONAL_ROD_TRIM_TOWER {0, 0, 0}
|
2017-03-31 19:03:38 +00:00
|
|
|
#endif
|
2016-07-12 22:55:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2017-05-01 21:13:09 +00:00
|
|
|
* Set granular options based on the specific type of leveling
|
2016-07-12 22:55:45 +00:00
|
|
|
*/
|
2017-05-12 03:33:47 +00:00
|
|
|
|
2017-05-16 05:30:29 +00:00
|
|
|
#define UBL_DELTA (ENABLED(AUTO_BED_LEVELING_UBL) && (ENABLED(DELTA) || ENABLED(UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN)))
|
2016-09-26 04:17:39 +00:00
|
|
|
#define ABL_PLANAR (ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_3POINT))
|
|
|
|
#define ABL_GRID (ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_BILINEAR))
|
2017-10-14 07:15:26 +00:00
|
|
|
#define OLDSCHOOL_ABL (ABL_PLANAR || ABL_GRID)
|
|
|
|
#define HAS_ABL (OLDSCHOOL_ABL || ENABLED(AUTO_BED_LEVELING_UBL))
|
|
|
|
#define HAS_LEVELING (HAS_ABL || ENABLED(MESH_BED_LEVELING))
|
|
|
|
#define HAS_AUTOLEVEL (HAS_ABL && DISABLED(PROBE_MANUALLY))
|
|
|
|
#define HAS_MESH (ENABLED(AUTO_BED_LEVELING_BILINEAR) || ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(MESH_BED_LEVELING))
|
|
|
|
#define PLANNER_LEVELING (OLDSCHOOL_ABL || ENABLED(MESH_BED_LEVELING) || UBL_DELTA)
|
2016-09-29 06:01:38 +00:00
|
|
|
#define HAS_PROBING_PROCEDURE (HAS_ABL || ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST))
|
|
|
|
#if HAS_PROBING_PROCEDURE
|
|
|
|
#define PROBE_BED_WIDTH abs(RIGHT_PROBE_BED_POSITION - (LEFT_PROBE_BED_POSITION))
|
|
|
|
#define PROBE_BED_HEIGHT abs(BACK_PROBE_BED_POSITION - (FRONT_PROBE_BED_POSITION))
|
|
|
|
#endif
|
2016-09-12 01:11:30 +00:00
|
|
|
|
2016-06-04 19:29:01 +00:00
|
|
|
/**
|
|
|
|
* Buzzer/Speaker
|
|
|
|
*/
|
|
|
|
#if ENABLED(LCD_USE_I2C_BUZZER)
|
|
|
|
#ifndef LCD_FEEDBACK_FREQUENCY_HZ
|
|
|
|
#define LCD_FEEDBACK_FREQUENCY_HZ 1000
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
|
|
|
|
#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100
|
|
|
|
#endif
|
2016-08-05 15:17:06 +00:00
|
|
|
#else
|
2016-06-04 19:29:01 +00:00
|
|
|
#ifndef LCD_FEEDBACK_FREQUENCY_HZ
|
|
|
|
#define LCD_FEEDBACK_FREQUENCY_HZ 5000
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
|
|
|
|
#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 2
|
|
|
|
#endif
|
|
|
|
#endif
|
2016-07-08 13:08:32 +00:00
|
|
|
|
2017-10-09 21:13:49 +00:00
|
|
|
/**
|
2017-10-16 07:33:07 +00:00
|
|
|
* VIKI2, miniVIKI, and AZSMZ_12864 require DOGLCD_SCK and DOGLCD_MOSI to be defined.
|
2017-10-09 21:13:49 +00:00
|
|
|
*/
|
2017-10-16 07:33:07 +00:00
|
|
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI) || ENABLED(AZSMZ_12864)
|
2017-10-09 21:13:49 +00:00
|
|
|
#ifndef DOGLCD_SCK
|
|
|
|
#define DOGLCD_SCK SCK_PIN
|
|
|
|
#endif
|
|
|
|
#ifndef DOGLCD_MOSI
|
|
|
|
#define DOGLCD_MOSI MOSI_PIN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-07-08 13:08:32 +00:00
|
|
|
/**
|
2016-09-20 08:49:42 +00:00
|
|
|
* Z_HOMING_HEIGHT / Z_CLEARANCE_BETWEEN_PROBES
|
2016-07-08 13:08:32 +00:00
|
|
|
*/
|
2016-08-04 03:51:05 +00:00
|
|
|
#ifndef Z_HOMING_HEIGHT
|
2016-09-20 08:49:42 +00:00
|
|
|
#ifndef Z_CLEARANCE_BETWEEN_PROBES
|
2016-08-04 03:51:05 +00:00
|
|
|
#define Z_HOMING_HEIGHT 0
|
2016-07-10 05:25:29 +00:00
|
|
|
#else
|
2016-09-20 08:49:42 +00:00
|
|
|
#define Z_HOMING_HEIGHT Z_CLEARANCE_BETWEEN_PROBES
|
2016-07-10 05:25:29 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
2016-09-20 08:49:42 +00:00
|
|
|
#ifndef Z_CLEARANCE_BETWEEN_PROBES
|
|
|
|
#define Z_CLEARANCE_BETWEEN_PROBES Z_HOMING_HEIGHT
|
2016-07-10 05:25:29 +00:00
|
|
|
#endif
|
2017-03-15 08:20:41 +00:00
|
|
|
#if Z_CLEARANCE_BETWEEN_PROBES > Z_HOMING_HEIGHT
|
|
|
|
#define MANUAL_PROBE_HEIGHT Z_CLEARANCE_BETWEEN_PROBES
|
|
|
|
#else
|
|
|
|
#define MANUAL_PROBE_HEIGHT Z_HOMING_HEIGHT
|
|
|
|
#endif
|
2016-07-08 13:08:32 +00:00
|
|
|
|
2017-07-22 03:54:39 +00:00
|
|
|
/**
|
|
|
|
* Bed Probing rectangular bounds
|
|
|
|
* These can be further constrained in code for Delta and SCARA
|
|
|
|
*/
|
2017-05-12 03:33:47 +00:00
|
|
|
#if ENABLED(DELTA)
|
2017-07-22 03:54:39 +00:00
|
|
|
#ifndef DELTA_PROBEABLE_RADIUS
|
|
|
|
#define DELTA_PROBEABLE_RADIUS DELTA_PRINTABLE_RADIUS
|
|
|
|
#endif
|
|
|
|
// Probing points may be verified at compile time within the radius
|
|
|
|
// using static_assert(HYPOT2(X2-X1,Y2-Y1)<=sq(DELTA_PRINTABLE_RADIUS),"bad probe point!")
|
|
|
|
// so that may be added to SanityCheck.h in the future.
|
|
|
|
#define MIN_PROBE_X (X_CENTER - (DELTA_PROBEABLE_RADIUS))
|
|
|
|
#define MIN_PROBE_Y (Y_CENTER - (DELTA_PROBEABLE_RADIUS))
|
|
|
|
#define MAX_PROBE_X (X_CENTER + DELTA_PROBEABLE_RADIUS)
|
|
|
|
#define MAX_PROBE_Y (Y_CENTER + DELTA_PROBEABLE_RADIUS)
|
2017-05-19 18:48:16 +00:00
|
|
|
#elif IS_SCARA
|
|
|
|
#define SCARA_PRINTABLE_RADIUS (SCARA_LINKAGE_1 + SCARA_LINKAGE_2)
|
2017-07-22 03:54:39 +00:00
|
|
|
#define MIN_PROBE_X (X_CENTER - (SCARA_PRINTABLE_RADIUS))
|
|
|
|
#define MIN_PROBE_Y (Y_CENTER - (SCARA_PRINTABLE_RADIUS))
|
|
|
|
#define MAX_PROBE_X (X_CENTER + SCARA_PRINTABLE_RADIUS)
|
|
|
|
#define MAX_PROBE_Y (Y_CENTER + SCARA_PRINTABLE_RADIUS)
|
2016-09-12 01:11:30 +00:00
|
|
|
#else
|
2017-10-18 22:14:32 +00:00
|
|
|
// Boundaries for Cartesian probing based on bed limits
|
|
|
|
#define MIN_PROBE_X (max(X_MIN_POS + X_PROBE_OFFSET_FROM_EXTRUDER, X_MIN_BED))
|
|
|
|
#define MIN_PROBE_Y (max(Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER, Y_MIN_BED))
|
|
|
|
#define MAX_PROBE_X (min(X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER, X_MAX_BED))
|
|
|
|
#define MAX_PROBE_Y (min(Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER, Y_MAX_BED))
|
2016-09-12 01:11:30 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-24 04:59:16 +00:00
|
|
|
// Stepper pulse duration, in cycles
|
|
|
|
#define STEP_PULSE_CYCLES ((MINIMUM_STEPPER_PULSE) * CYCLES_PER_MICROSECOND)
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
// Add additional delay for between direction signal and pulse signal of stepper
|
|
|
|
#ifndef STEPPER_DIRECTION_DELAY
|
|
|
|
#define STEPPER_DIRECTION_DELAY 0 // time in microseconds
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __SAM3X8E__ //todo: hal: broken hal encapsulation
|
|
|
|
#undef UI_VOLTAGE_LEVEL
|
|
|
|
#undef RADDS_DISPLAY
|
|
|
|
#undef MOTOR_CURRENT
|
|
|
|
#endif
|
2016-09-24 04:59:16 +00:00
|
|
|
|
2017-02-09 13:02:25 +00:00
|
|
|
#if ENABLED(SDCARD_SORT_ALPHA)
|
|
|
|
#define HAS_FOLDER_SORTING (FOLDER_SORTING || ENABLED(SDSORT_GCODE))
|
|
|
|
#endif
|
|
|
|
|
2017-04-15 02:41:21 +00:00
|
|
|
// Updated G92 behavior shifts the workspace
|
|
|
|
#define HAS_POSITION_SHIFT DISABLED(NO_WORKSPACE_OFFSETS)
|
|
|
|
// The home offset also shifts the coordinate space
|
|
|
|
#define HAS_HOME_OFFSET (DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DELTA))
|
|
|
|
// Either offset yields extra calculations on all moves
|
|
|
|
#define HAS_WORKSPACE_OFFSET (HAS_POSITION_SHIFT || HAS_HOME_OFFSET)
|
|
|
|
// M206 doesn't apply to DELTA
|
|
|
|
#define HAS_M206_COMMAND (HAS_HOME_OFFSET && DISABLED(DELTA))
|
|
|
|
|
2017-03-01 01:02:50 +00:00
|
|
|
// LCD timeout to status screen default is 15s
|
|
|
|
#ifndef LCD_TIMEOUT_TO_STATUS
|
|
|
|
#define LCD_TIMEOUT_TO_STATUS 15000
|
|
|
|
#endif
|
|
|
|
|
2017-05-12 03:33:47 +00:00
|
|
|
/**
|
2017-07-22 03:54:39 +00:00
|
|
|
* DELTA_SEGMENT_MIN_LENGTH for UBL_DELTA
|
2017-05-12 03:33:47 +00:00
|
|
|
*/
|
2017-05-12 06:05:11 +00:00
|
|
|
#if UBL_DELTA
|
2017-05-12 03:33:47 +00:00
|
|
|
#ifndef DELTA_SEGMENT_MIN_LENGTH
|
|
|
|
#if IS_SCARA
|
|
|
|
#define DELTA_SEGMENT_MIN_LENGTH 0.25 // SCARA minimum segment size is 0.25mm
|
|
|
|
#elif ENABLED(DELTA)
|
|
|
|
#define DELTA_SEGMENT_MIN_LENGTH 0.10 // mm (still subject to DELTA_SEGMENTS_PER_SECOND)
|
|
|
|
#else // CARTESIAN
|
|
|
|
#define DELTA_SEGMENT_MIN_LENGTH 1.00 // mm (similar to G2/G3 arc segmentation)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-05-16 20:25:30 +00:00
|
|
|
|
2017-05-12 04:22:35 +00:00
|
|
|
// Shorthand
|
|
|
|
#define GRID_MAX_POINTS ((GRID_MAX_POINTS_X) * (GRID_MAX_POINTS_Y))
|
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
// Add commands that need sub-codes to this list
|
|
|
|
#define USE_GCODE_SUBCODES ENABLED(G38_PROBE_TARGET)
|
|
|
|
|
2017-06-01 02:44:05 +00:00
|
|
|
// MESH_BED_LEVELING overrides PROBE_MANUALLY
|
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
|
|
|
#undef PROBE_MANUALLY
|
|
|
|
#endif
|
|
|
|
|
2017-08-13 21:35:59 +00:00
|
|
|
// Parking Extruder
|
|
|
|
#if ENABLED(PARKING_EXTRUDER)
|
|
|
|
#ifndef PARKING_EXTRUDER_GRAB_DISTANCE
|
|
|
|
#define PARKING_EXTRUDER_GRAB_DISTANCE 0
|
|
|
|
#endif
|
|
|
|
#ifndef PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
|
|
|
|
#define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE HIGH
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
// Use float instead of double. Needs profiling.
|
|
|
|
#if defined(ARDUINO_ARCH_SAM) && ENABLED(DELTA_FAST_SQRT)
|
|
|
|
#undef ATAN2
|
|
|
|
#undef FABS
|
|
|
|
#undef POW
|
|
|
|
#undef SQRT
|
|
|
|
#undef CEIL
|
|
|
|
#undef FLOOR
|
|
|
|
#undef LROUND
|
|
|
|
#undef FMOD
|
|
|
|
#define ATAN2(y, x) atan2f(y, x)
|
|
|
|
#define FABS(x) fabsf(x)
|
|
|
|
#define POW(x, y) powf(x, y)
|
|
|
|
#define SQRT(x) sqrtf(x)
|
|
|
|
#define CEIL(x) ceilf(x)
|
|
|
|
#define FLOOR(x) floorf(x)
|
|
|
|
#define LROUND(x) lroundf(x)
|
|
|
|
#define FMOD(x, y) fmodf(x, y)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TEENSYDUINO
|
|
|
|
#undef max
|
|
|
|
#define max(a,b) ((a)>(b)?(a):(b))
|
|
|
|
#undef min
|
|
|
|
#define min(a,b) ((a)<(b)?(a):(b))
|
|
|
|
|
|
|
|
#define NOT_A_PIN 0 // For PINS_DEBUGGING
|
|
|
|
#endif
|
2016-07-26 06:12:03 +00:00
|
|
|
#endif // CONDITIONALS_POST_H
|