0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Configurations.git synced 2025-09-14 16:20:05 +00:00
This commit is contained in:
Scott Lahteine 2025-06-10 14:47:28 -05:00
parent fc37664517
commit e2abbaffc1
2 changed files with 25 additions and 25 deletions

View file

@ -1,6 +1,6 @@
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
* Copyright (c) 2025 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
@ -661,15 +661,15 @@
// Above this temperature the heater will be switched off.
// This can protect components from overheating, but NOT from shorts and failures.
// (Use MINTEMP for thermistor short/failure protection.)
#define HEATER_0_MAXTEMP 300 //Brass Nozzle Max, PT100
#define HEATER_1_MAXTEMP 300 //Brass Nozzle Max, PT100
#define HEATER_0_MAXTEMP 300 // Brass Nozzle Max, PT100
#define HEATER_1_MAXTEMP 300 // Brass Nozzle Max, PT100
#define HEATER_2_MAXTEMP 275
#define HEATER_3_MAXTEMP 275
#define HEATER_4_MAXTEMP 275
#define HEATER_5_MAXTEMP 275
#define HEATER_6_MAXTEMP 275
#define HEATER_7_MAXTEMP 275
#define BED_MAXTEMP 120 //Varipower Bed Max
#define BED_MAXTEMP 120 // Varipower Bed Max
#define CHAMBER_MAXTEMP 60
/**
@ -809,7 +809,7 @@
// Get the power from the temperature report ('M105' => B@:nnn) and try P*2-20 to P*2-10.
//#define PID_BED_DEBUG // Print Bed PID debug data to the serial port. Use 'M303 D' to enable/disable.
//E3D BigBox Variable Power Density Heated Bed (24V)
// E3D BigBox Variable Power Density Heated Bed (24V)
#define DEFAULT_bedKp 336
#define DEFAULT_bedKi 61
#define DEFAULT_bedKd 462.4
@ -1300,7 +1300,7 @@
* Override with M92 (when enabled below)
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT { 160, 180, 1600, 304 } //BigBox Defaults 0.9 Steppers, 16,8,16,16,16 Microsteps
#define DEFAULT_AXIS_STEPS_PER_UNIT { 160, 180, 1600, 304 } // BigBox Defaults 0.9 Steppers, 16,8,16,16,16 Microsteps
/**
* Enable support for M92. Disable to save at least ~530 bytes of flash.
@ -1312,7 +1312,7 @@
* Override with M203
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_MAX_FEEDRATE { 150, 150, 6, 50 } //BigBox Defaults
#define DEFAULT_MAX_FEEDRATE { 150, 150, 6, 50 } // BigBox Defaults
//#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2
#if ENABLED(LIMITED_MAX_FR_EDITING)
@ -1325,7 +1325,7 @@
* Override with M201
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 100, 10000 } //BigBox Defaults
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 100, 10000 } // BigBox Defaults
//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
@ -1659,7 +1659,7 @@
* | [-] |
* O-- FRONT --+
*/
#define NOZZLE_TO_PROBE_OFFSET { 0, 35, 0 } //BigBox IR Probe
#define NOZZLE_TO_PROBE_OFFSET { 0, 35, 0 } // BigBox IR Probe
// Enable and set to use a specific tool for probing. Disable to allow any tool.
#define PROBING_TOOL 0
@ -1903,7 +1903,7 @@
// @section geometry
// The size of the printable area
#define X_BED_SIZE 260 //BigBox Dual, 300 for others
#define X_BED_SIZE 260 // BigBox Dual, 300 for others
#define Y_BED_SIZE 200
// Travel limits (linear=mm, rotational=°) after homing, corresponding to endstop positions.
@ -1911,7 +1911,7 @@
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE //Change to 235 to reach purge bucket
#define Y_MAX_POS Y_BED_SIZE // Change to 235 to reach purge bucket
#define Z_MAX_POS 300
//#define I_MIN_POS 0
//#define I_MAX_POS 50
@ -2499,7 +2499,7 @@
// Preheat Constants - Up to 10 are supported without changes
//
#define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 215 //BigBox Default Config was 220
#define PREHEAT_1_TEMP_HOTEND 215 // BigBox Default Config was 220
#define PREHEAT_1_TEMP_BED 70
#define PREHEAT_1_TEMP_CHAMBER 35
#define PREHEAT_1_FAN_SPEED 0 // Value from 0 to 255
@ -2527,7 +2527,7 @@
#if ENABLED(NOZZLE_PARK_FEATURE)
// Specify a park position as { X, Y, Z_raise }
#define NOZZLE_PARK_POINT { (70 ), 200, 20 } //Purge Bucket is at 235 but T0/T1 offset make it difficult to park there
#define NOZZLE_PARK_POINT { 70, 200, 20 } // Purge Bucket at Y=235 but T0/T1 offset make it difficult to park there
#define NOZZLE_PARK_MOVE 0 // Park motion: 0 = XY Move, 1 = X Only, 2 = Y Only, 3 = X before Y, 4 = Y before X
#define NOZZLE_PARK_Z_RAISE_MIN 2 // (mm) Always raise Z by at least this distance
#define NOZZLE_PARK_XY_FEEDRATE 100 // (mm/s) X and Y axes feedrate (also used for delta Z axis)

View file

@ -1,6 +1,6 @@
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
* Copyright (c) 2025 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
@ -689,8 +689,8 @@
* Multiple extruders can be assigned to the same pin in which case
* the fan will turn on when any selected extruder is above the threshold.
*/
#define E0_AUTO_FAN_PIN 8 //Stock Wiring, Both Hotend fans wired to FAN1
#define E1_AUTO_FAN_PIN 8 //Stock Wiring, Both Hotend fans wired to FAN1
#define E0_AUTO_FAN_PIN 8 // Stock Wiring, Both Hotend fans wired to FAN1
#define E1_AUTO_FAN_PIN 8 // Stock Wiring, Both Hotend fans wired to FAN1
#define E2_AUTO_FAN_PIN -1
#define E3_AUTO_FAN_PIN -1
#define E4_AUTO_FAN_PIN -1