Simplify power supply naming logic (#14488)
Co-Authored-By: Tim Moore <tim.moore@lightbend.com> Co-Authored-By: AnHardt <github@kitelab.de>
This commit is contained in:
parent
44e4f853c8
commit
eb6dec03bd
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -349,8 +349,8 @@ extern millis_t max_inactive_time, stepper_inactive_time;
|
|||||||
|
|
||||||
#if HAS_POWER_SWITCH
|
#if HAS_POWER_SWITCH
|
||||||
extern bool powersupply_on;
|
extern bool powersupply_on;
|
||||||
#define PSU_PIN_ON() do{ OUT_WRITE(PS_ON_PIN, PS_ON_AWAKE); powersupply_on = true; }while(0)
|
#define PSU_PIN_ON() do{ OUT_WRITE(PS_ON_PIN, PSU_ACTIVE_HIGH); powersupply_on = true; }while(0)
|
||||||
#define PSU_PIN_OFF() do{ OUT_WRITE(PS_ON_PIN, PS_ON_ASLEEP); powersupply_on = false; }while(0)
|
#define PSU_PIN_OFF() do{ OUT_WRITE(PS_ON_PIN, !PSU_ACTIVE_HIGH); powersupply_on = false; }while(0)
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define PSU_ON() powerManager.power_on()
|
#define PSU_ON() powerManager.power_on()
|
||||||
#define PSU_OFF() powerManager.power_off()
|
#define PSU_OFF() powerManager.power_off()
|
||||||
|
@ -111,8 +111,8 @@
|
|||||||
* M76 - Pause the print job timer.
|
* M76 - Pause the print job timer.
|
||||||
* M77 - Stop the print job timer.
|
* M77 - Stop the print job timer.
|
||||||
* M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
|
* M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
|
||||||
* M80 - Turn on Power Supply. (Requires POWER_SUPPLY > 0)
|
* M80 - Turn on Power Supply. (Requires PSU_CONTROL)
|
||||||
* M81 - Turn off Power Supply. (Requires POWER_SUPPLY > 0)
|
* M81 - Turn off Power Supply. (Requires PSU_CONTROL)
|
||||||
* M82 - Set E codes absolute (default).
|
* M82 - Set E codes absolute (default).
|
||||||
* M83 - Set E codes relative while in Absolute (G90) mode.
|
* M83 - Set E codes relative while in Absolute (G90) mode.
|
||||||
* M84 - Disable steppers until next move, or use S<seconds> to specify an idle
|
* M84 - Disable steppers until next move, or use S<seconds> to specify an idle
|
||||||
|
@ -148,7 +148,7 @@
|
|||||||
#define LCD_CONTRAST_MAX 255
|
#define LCD_CONTRAST_MAX 255
|
||||||
#define DEFAULT_LCD_CONTRAST 220
|
#define DEFAULT_LCD_CONTRAST 220
|
||||||
#define LED_COLORS_REDUCE_GREEN
|
#define LED_COLORS_REDUCE_GREEN
|
||||||
#if POWER_SUPPLY > 0 && EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1)
|
#if (HAS_POWER_SWITCH && EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1))
|
||||||
#define LED_BACKLIGHT_TIMEOUT 10000
|
#define LED_BACKLIGHT_TIMEOUT 10000
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -269,19 +269,22 @@
|
|||||||
#define DISABLE_INACTIVE_E DISABLE_E
|
#define DISABLE_INACTIVE_E DISABLE_E
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Power Signal Control Definitions
|
/**
|
||||||
// By default use ATX definition
|
* Power Supply Control
|
||||||
#ifndef POWER_SUPPLY
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#ifndef PSU_NAME
|
||||||
|
#if ENABLED(PSU_CONTROL)
|
||||||
|
#if PSU_ACTIVE_HIGH
|
||||||
|
#define PSU_NAME "XBox" // X-Box 360 (203W)
|
||||||
|
#else
|
||||||
|
#define PSU_NAME "ATX" // ATX style
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#define PSU_NAME "Generic" // No control
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if (POWER_SUPPLY == 1) // 1 = ATX
|
|
||||||
#define PS_ON_AWAKE LOW
|
#define HAS_POWER_SWITCH (ENABLED(PSU_CONTROL) && PIN_EXISTS(PS_ON))
|
||||||
#define PS_ON_ASLEEP HIGH
|
|
||||||
#elif (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
|
|
||||||
#define PS_ON_AWAKE HIGH
|
|
||||||
#define PS_ON_ASLEEP LOW
|
|
||||||
#endif
|
|
||||||
#define HAS_POWER_SWITCH (POWER_SUPPLY > 0 && PIN_EXISTS(PS_ON))
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Temp Sensor defines
|
* Temp Sensor defines
|
||||||
|
@ -376,6 +376,12 @@
|
|||||||
#error "USB_SD_DISABLED is now NO_SD_HOST_DRIVE. Please update your Configuration_adv.h."
|
#error "USB_SD_DISABLED is now NO_SD_HOST_DRIVE. Please update your Configuration_adv.h."
|
||||||
#elif defined(USB_SD_ONBOARD)
|
#elif defined(USB_SD_ONBOARD)
|
||||||
#error "USB_SD_ONBOARD is obsolete. Disable NO_SD_HOST_DRIVE instead."
|
#error "USB_SD_ONBOARD is obsolete. Disable NO_SD_HOST_DRIVE instead."
|
||||||
|
#elif POWER_SUPPLY == 1
|
||||||
|
#error "Replace POWER_SUPPLY 1 by enabling PSU_CONTROL and setting PSU_ACTIVE_HIGH to 'false'."
|
||||||
|
#elif POWER_SUPPLY == 2
|
||||||
|
#error "Replace POWER_SUPPLY 2 by enabling PSU_CONTROL and setting PSU_ACTIVE_HIGH to 'true'."
|
||||||
|
#elif defined(POWER_SUPPLY)
|
||||||
|
#error "POWER_SUPPLY is now obsolete. Please remove it from Configuration.h."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BOARD_MKS_13 -47
|
#define BOARD_MKS_13 -47
|
||||||
@ -1548,7 +1554,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
|||||||
/**
|
/**
|
||||||
* LED Backlight Timeout
|
* LED Backlight Timeout
|
||||||
*/
|
*/
|
||||||
#if defined(LED_BACKLIGHT_TIMEOUT) && !(EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1) && POWER_SUPPLY > 0)
|
#if defined(LED_BACKLIGHT_TIMEOUT) && !(EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1) && HAS_POWER_SWITCH)
|
||||||
#error "LED_BACKLIGHT_TIMEOUT requires a Fysetc Mini Panel and a Power Switch."
|
#error "LED_BACKLIGHT_TIMEOUT requires a Fysetc Mini Panel and a Power Switch."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2297,6 +2303,13 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure this option is set intentionally
|
||||||
|
*/
|
||||||
|
#if ENABLED(PSU_CONTROL) && !defined(PSU_ACTIVE_HIGH)
|
||||||
|
#error "PSU_CONTROL requires PSU_ACTIVE_HIGH to be defined as 'true' or 'false'."
|
||||||
|
#endif
|
||||||
|
|
||||||
#if HAS_CUTTER
|
#if HAS_CUTTER
|
||||||
#define _PIN_CONFLICT(P) (PIN_EXISTS(P) && P##_PIN == SPINDLE_LASER_PWM_PIN)
|
#define _PIN_CONFLICT(P) (PIN_EXISTS(P) && P##_PIN == SPINDLE_LASER_PWM_PIN)
|
||||||
#if BOTH(SPINDLE_FEATURE, LASER_FEATURE)
|
#if BOTH(SPINDLE_FEATURE, LASER_FEATURE)
|
||||||
|
@ -176,13 +176,7 @@ void menu_info_board() {
|
|||||||
STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
|
STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
|
||||||
STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
|
STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
|
||||||
STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
|
STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
|
||||||
#if POWER_SUPPLY == 0
|
STATIC_ITEM(MSG_INFO_PSU ": " PSU_NAME, true);
|
||||||
STATIC_ITEM(MSG_INFO_PSU ": Generic", true);
|
|
||||||
#elif POWER_SUPPLY == 1
|
|
||||||
STATIC_ITEM(MSG_INFO_PSU ": ATX", true); // Power Supply: ATX
|
|
||||||
#elif POWER_SUPPLY == 2
|
|
||||||
STATIC_ITEM(MSG_INFO_PSU ": XBox", true); // Power Supply: XBox
|
|
||||||
#endif
|
|
||||||
END_SCREEN();
|
END_SCREEN();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -741,7 +741,7 @@
|
|||||||
#ifndef LED_PIN
|
#ifndef LED_PIN
|
||||||
#define LED_PIN -1
|
#define LED_PIN -1
|
||||||
#endif
|
#endif
|
||||||
#if POWER_SUPPLY == 0 || !defined(PS_ON_PIN)
|
#if DISABLED(PSU_CONTROL) || !defined(PS_ON_PIN)
|
||||||
#undef PS_ON_PIN
|
#undef PS_ON_PIN
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
@ -44,9 +44,9 @@
|
|||||||
//
|
//
|
||||||
// PSU / SERVO
|
// PSU / SERVO
|
||||||
//
|
//
|
||||||
// If POWER_SUPPLY is specified, always hijack Servo 3
|
// If PSU_CONTROL is specified, always hijack Servo 3
|
||||||
//
|
//
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
#define SERVO3_PIN -1
|
#define SERVO3_PIN -1
|
||||||
#define PS_ON_PIN 4
|
#define PS_ON_PIN 4
|
||||||
#endif
|
#endif
|
||||||
|
@ -27,7 +27,6 @@ opt_set EXTRUDERS 2
|
|||||||
opt_set TEMP_SENSOR_0 -2
|
opt_set TEMP_SENSOR_0 -2
|
||||||
opt_set TEMP_SENSOR_1 1
|
opt_set TEMP_SENSOR_1 1
|
||||||
opt_set TEMP_SENSOR_BED 2
|
opt_set TEMP_SENSOR_BED 2
|
||||||
opt_set POWER_SUPPLY 1
|
|
||||||
opt_set GRID_MAX_POINTS_X 16
|
opt_set GRID_MAX_POINTS_X 16
|
||||||
opt_set FANMUX0_PIN 53
|
opt_set FANMUX0_PIN 53
|
||||||
opt_enable PIDTEMPBED FIX_MOUNTED_PROBE Z_SAFE_HOMING EEPROM_SETTINGS \
|
opt_enable PIDTEMPBED FIX_MOUNTED_PROBE Z_SAFE_HOMING EEPROM_SETTINGS \
|
||||||
@ -37,7 +36,7 @@ opt_enable PIDTEMPBED FIX_MOUNTED_PROBE Z_SAFE_HOMING EEPROM_SETTINGS \
|
|||||||
AUTO_BED_LEVELING_LINEAR Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE \
|
AUTO_BED_LEVELING_LINEAR Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE \
|
||||||
SKEW_CORRECTION SKEW_CORRECTION_FOR_Z SKEW_CORRECTION_GCODE \
|
SKEW_CORRECTION SKEW_CORRECTION_FOR_Z SKEW_CORRECTION_GCODE \
|
||||||
FWRETRACT ARC_P_CIRCLES ADVANCED_PAUSE_FEATURE CNC_WORKSPACE_PLANES CNC_COORDINATE_SYSTEMS \
|
FWRETRACT ARC_P_CIRCLES ADVANCED_PAUSE_FEATURE CNC_WORKSPACE_PLANES CNC_COORDINATE_SYSTEMS \
|
||||||
AUTO_POWER_CONTROL POWER_LOSS_RECOVERY POWER_LOSS_PIN POWER_LOSS_STATE \
|
PSU_CONTROL AUTO_POWER_CONTROL POWER_LOSS_RECOVERY POWER_LOSS_PIN POWER_LOSS_STATE \
|
||||||
LCD_PROGRESS_BAR LCD_PROGRESS_BAR_TEST PINS_DEBUGGING \
|
LCD_PROGRESS_BAR LCD_PROGRESS_BAR_TEST PINS_DEBUGGING \
|
||||||
MAX7219_DEBUG LED_CONTROL_MENU CASE_LIGHT_ENABLE CASE_LIGHT_USE_NEOPIXEL CODEPENDENT_XY_HOMING BACKLASH_COMPENSATION BACKLASH_GCODE
|
MAX7219_DEBUG LED_CONTROL_MENU CASE_LIGHT_ENABLE CASE_LIGHT_USE_NEOPIXEL CODEPENDENT_XY_HOMING BACKLASH_COMPENSATION BACKLASH_GCODE
|
||||||
opt_enable SLOW_PWM_HEATERS THERMAL_PROTECTION_CHAMBER
|
opt_enable SLOW_PWM_HEATERS THERMAL_PROTECTION_CHAMBER
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -313,22 +313,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -338,7 +336,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -313,22 +313,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -338,7 +336,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -320,22 +320,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -345,7 +343,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -313,22 +313,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -338,7 +336,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -321,22 +321,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -346,7 +344,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,30 +312,29 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
#define AUTO_POWER_CONTROLLERFAN
|
#define AUTO_POWER_CONTROLLERFAN
|
||||||
#define AUTO_POWER_CHAMBER_FAN
|
#define AUTO_POWER_CHAMBER_FAN
|
||||||
|
//#define AUTO_POWER_E_TEMP 50 // (°C) Turn on PSU over this temperature
|
||||||
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -353,22 +353,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -378,7 +376,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -321,22 +321,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -346,7 +344,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -316,22 +316,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -341,7 +339,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -314,22 +314,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -339,7 +337,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -317,22 +317,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -342,7 +340,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -332,22 +332,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -357,7 +355,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -317,22 +317,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -342,7 +340,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -313,22 +313,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -338,7 +336,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -313,22 +313,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -338,7 +336,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -315,22 +315,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -340,7 +338,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -339,22 +339,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -364,7 +362,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -334,22 +334,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -359,7 +357,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -314,22 +314,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -339,7 +337,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -332,22 +332,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 0
|
//#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -357,7 +355,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -312,22 +312,20 @@
|
|||||||
// @section machine
|
// @section machine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select your power supply here. Use 0 if you haven't connected the PS_ON_PIN
|
* Power Supply Control
|
||||||
*
|
*
|
||||||
* 0 = No Power Switch
|
* Enable and connect the power supply to the PS_ON_PIN.
|
||||||
* 1 = ATX
|
* Specify whether the power supply is active HIGH or active LOW.
|
||||||
* 2 = X-Box 360 203Watts (the blue wire connected to PS_ON and the red wire to VCC)
|
|
||||||
*
|
|
||||||
* :{ 0:'No power switch', 1:'ATX', 2:'X-Box 360' }
|
|
||||||
*/
|
*/
|
||||||
#define POWER_SUPPLY 1
|
#define PSU_CONTROL
|
||||||
|
//#define PSU_NAME "Power Supply"
|
||||||
|
|
||||||
#if POWER_SUPPLY > 0
|
#if ENABLED(PSU_CONTROL)
|
||||||
// Enable this option to leave the PSU off at startup.
|
#define PSU_ACTIVE_HIGH false // Set 'false' for ATX (1), 'true' for X-Box (2)
|
||||||
// Power to steppers and heaters will need to be turned on with M80.
|
|
||||||
//#define PS_DEFAULT_OFF
|
|
||||||
|
|
||||||
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
//#define PS_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
|
|
||||||
|
//#define AUTO_POWER_CONTROL // Enable automatic control of the PS_ON pin
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
#define AUTO_POWER_FANS // Turn on PSU if fans need power
|
||||||
#define AUTO_POWER_E_FANS
|
#define AUTO_POWER_E_FANS
|
||||||
@ -337,7 +335,6 @@
|
|||||||
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
//#define AUTO_POWER_CHAMBER_TEMP 30 // (°C) Turn on PSU over this temperature
|
||||||
#define POWER_TIMEOUT 30
|
#define POWER_TIMEOUT 30
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user