Skip to content

Commit

Permalink
V.1.10.0
Browse files Browse the repository at this point in the history
Actual V1.10.0
  • Loading branch information
ADeliciousMan committed Sep 24, 2023
1 parent 143b867 commit 30d91f0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
24 changes: 18 additions & 6 deletions Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,22 @@

//#define MOTHERBOARD BOARD_CREALITY_V427 // Creality 4.2.7 Board
//#define MOTHERBOARD BOARD_CREALITY_V422 // Creality 4.2.2 Board, standard for Ender 3 and Ender 3 Pro
//#define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V3_0 // BIQU SKR MINI E3 V3
//#define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V3_0 // BIQU SKR MINI E3 V3.0
//#define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_0 // BIQU SKR MINI E3 V1.0
//#define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_2 // BIQU SKR MINI E3 V1.2
//#define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V2_0 // BIQU SKR MINI E3 V2.0
//##define MOTHERBOARD BOARD_BTT_OCTOPUS_V1_0 // BIQU OCTOPUS V1
//##define MOTHERBOARD BOARD_BTT_OCTOPUS_V1_1 // BIQU OCTOPUS V1.1
//##define MOTHERBOARD BOARD_BTT_OCTOPUS_PRO_V1_0 // BIQU OCTOPUS PRO V1
//##define MOTHERBOARD BOARD_BTT_OCTOPUS_MAX_EZ_V1_0 // BIQU OCTOPUS MAX EZ

//===========================================================================
//================================= DRIVERS =================================
//===========================================================================

//#define DRIVERS_TMC2208_STANDALONE // Typical drivers for a Creality 4.2.7 board
//#define DRIVERS_A4988 // Typical drivers for a Creality 4.2.2 board
//#define DRIVERS_TMC2209 // Typical drivers for a BIQU SKR Mini 3 V3 board
//#define DRIVERS_TMC2209 // Typical drivers for a BIQU SKR Mini 3 V3 board or Octopus Pro (Same driver as the EZ2209 on the Octopus Max EZ)

//===========================================================================
//================================= Z PROBE =================================
Expand Down Expand Up @@ -63,9 +70,14 @@
//================================== EXTRAS =================================
//===========================================================================

//#define LIN_ADVANCE // ENable Linear Advance, 422 & 427 boards do not support this

//#define LIN_ADVANCE // Enable Linear Advance, 422 & 427 boards do not support this
//#define FILAMENT_RUNOUT_SENSOR // Enable filament runout sensor

#if ENABLED(FILAMENT_RUNOUT_SENSOR) // PICK ONLY ONE
#define FIL_RUNOUT_STATE LOW // State pins are in indicating that filament is NOT present
#define FIL_RUNOUT_STATE HIGH // State pins are in indicating that filament is NOT present
#endif

/* ______________ ______ ____ ____ _ ________
/ ____/ _/ __ \/_ __/ / __ \/ __ \/ | / / ____/
/ __/ / // / / / / / / / / / / / / |/ / __/
Expand All @@ -91,12 +103,12 @@ DO NOT TOUCH UNLESS IF YOU KNOW WHAT YOU ARE DOING
#define INVERT_E0_DIR false
#define NO_CREALITY_422_DRIVER_WARNING // Makes VScode shut up about the 422 drivers
#define CUSTOM_MACHINE_NAME "Ender-3 4.2.2 - Marlin 2.1.2.1"
#elif (MOTHERBOARD == BOARD_BTT_SKR_MINI_E3_V3_0) // Special inverting of motors for BIQU SKR MINI E3 V3
#elif (MOTHERBOARD == BOARD_BTT_SKR_MINI_E3_V3_0) || (MOTHERBOARD == BOARD_BTT_SKR_MINI_E3_V2_0) || (MOTHERBOARD == BOARD_BTT_SKR_MINI_E3_V1_2) || (MOTHERBOARD == BOARD_BTT_SKR_MINI_E3_V1_0) // Special inverting of motors for BIQU SKR MINI E3 V3
#define INVERT_X_DIR true
#define INVERT_Y_DIR true
#define INVERT_Z_DIR false
#define INVERT_E0_DIR true
#define CUSTOM_MACHINE_NAME "Ender-3 SKR Mini E3 V3 - Marlin 2.1.2.1"
#define CUSTOM_MACHINE_NAME "Ender-3 SKR Mini E3 - Marlin 2.1.2.1"
#endif

// Driver Setting
Expand Down
8 changes: 8 additions & 0 deletions Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -3332,6 +3332,10 @@
#define CONFIG_MENU_ITEM_3_GCODE "M106 S255\nM303 E0 C10 S210 U\nM500\nM106 S0\nM117 PID E TEMP 200 DONE"
#define CONFIG_MENU_ITEM_3_CONFIRM // Show a confirmation dialog before this action

#define CONFIG_MENU_ITEM_3_DESC "PID E C10 TEMP 260"
#define CONFIG_MENU_ITEM_3_GCODE "M106 S255\nM303 E0 C10 S260 U\nM500\nM106 S0\nM117 PID E TEMP 260 DONE"
#define CONFIG_MENU_ITEM_3_CONFIRM // Show a confirmation dialog before this action

#define CONFIG_MENU_ITEM_4_DESC "PID BED C10 TEMP 50"
#define CONFIG_MENU_ITEM_4_GCODE "M303 E-1 C10 S50 U\nM500\nM106 S0\nM117 PID BED TEMP 50 DONE"
#define CONFIG_MENU_ITEM_4_CONFIRM
Expand All @@ -3343,6 +3347,10 @@
#define CONFIG_MENU_ITEM_6_DESC "PID BED C10 TEMP 70"
#define CONFIG_MENU_ITEM_6_GCODE "M303 E-1 C10 S70 U\nM500\nM106 S0\nM117 PID BED TEMP 70 DONE"
#define CONFIG_MENU_ITEM_6_CONFIRM

#define CONFIG_MENU_ITEM_6_DESC "PID BED C10 TEMP 90"
#define CONFIG_MENU_ITEM_6_GCODE "M303 E-1 C10 S90 U\nM500\nM106 S0\nM117 PID BED TEMP 90 DONE"
#define CONFIG_MENU_ITEM_6_CONFIRM
#endif

// @section custom buttons
Expand Down

0 comments on commit 30d91f0

Please sign in to comment.