Skip to content

Commit

Permalink
🔧 Velleman updates
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Dec 18, 2022
1 parent 30f6cf5 commit 94c2be8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/examples/delta/Velleman/K8800/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -1710,7 +1710,7 @@
// @section homing

//#define NO_MOTION_BEFORE_HOMING // Inhibit movement until all axes have been homed. Also enable HOME_AFTER_DEACTIVATE for extra safety.
#define HOME_AFTER_DEACTIVATE // Require rehoming after steppers are deactivated. Also enable NO_MOTION_BEFORE_HOMING for extra safety.
#define HOME_AFTER_DEACTIVATE // Require rehoming after steppers are deactivated. Also enable NO_MOTION_BEFORE_HOMING for extra safety.

/**
* Set Z_IDLE_HEIGHT if the Z-Axis moves on its own when steppers are disabled.
Expand Down
23 changes: 21 additions & 2 deletions config/examples/delta/Velleman/K8800/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius

#define ADAPTIVE_FAN_SLOWING // Slow part cooling fan if temperature drops
#define ADAPTIVE_FAN_SLOWING // Slow part cooling fan if temperature drops
#if BOTH(ADAPTIVE_FAN_SLOWING, PIDTEMP)
#define NO_FAN_SLOWING_IN_PID_TUNING // Don't slow fan speed during M303
#define NO_FAN_SLOWING_IN_PID_TUNING // Don't slow fan speed during M303
#endif

/**
Expand Down Expand Up @@ -1766,6 +1766,15 @@
*/
//#define NO_SD_HOST_DRIVE // Disable SD Card access over USB (for security).

/**
* By default the framework is responsible for the shared media I/O.
* Enable this if you need Marlin to take care of the shared media I/O.
* Useful if shared media isn't working properly on some boards.
*/
#if ENABLED(SDSUPPORT) && DISABLED(NO_SD_HOST_DRIVE)
//#define DISKIO_HOST_DRIVE
#endif

/**
* Additional options for Graphical Displays
*
Expand Down Expand Up @@ -3599,6 +3608,14 @@
*/
//#define CNC_COORDINATE_SYSTEMS

/**
* CNC Drilling Cycle - UNDER DEVELOPMENT
*
* Enables G81 to perform a drilling cycle.
* Currently only supports a single cycle, no G-code chaining.
*/
//#define CNC_DRILLING_CYCLE

// @section reporting

/**
Expand Down Expand Up @@ -4178,6 +4195,8 @@
#define MMU2_CAN_LOAD_INCREMENT_SEQUENCE \
{ -MMU2_CAN_LOAD_INCREMENT, MMU2_CAN_LOAD_FEEDRATE }

// Continue unloading if sensor detects filament after the initial unload move
//#define MMU_IR_UNLOAD_MOVE
#else

/**
Expand Down

0 comments on commit 94c2be8

Please sign in to comment.