mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-25 07:34:06 -06:00
Followup updates
This commit is contained in:
parent
541c97d74a
commit
c75be96605
8 changed files with 76 additions and 28 deletions
|
@ -56,15 +56,15 @@
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= DELTA Printer ===============================
|
//============================= DELTA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a Delta printer start with one of the configuration files in the
|
// For a Delta printer, start with one of the configuration files in the config/examples/delta directory
|
||||||
// config/examples/delta directory and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= SCARA Printer ===============================
|
//============================= SCARA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a SCARA printer start with the configuration files in
|
// For a SCARA printer, start with one of the configuration files in the config/examples/SCARA directory
|
||||||
// config/examples/SCARA and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
@ -961,10 +961,20 @@
|
||||||
/**
|
/**
|
||||||
* Nozzle-to-Probe offsets { X, Y, Z }
|
* Nozzle-to-Probe offsets { X, Y, Z }
|
||||||
*
|
*
|
||||||
* - Use a caliper or ruler to measure the distance from the tip of
|
* X and Y offset
|
||||||
|
* Use a caliper or ruler to measure the distance from the tip of
|
||||||
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
||||||
|
*
|
||||||
|
* Z offset
|
||||||
* - For the Z offset use your best known value and adjust at runtime.
|
* - For the Z offset use your best known value and adjust at runtime.
|
||||||
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
* - Common probes trigger below the nozzle and have negative values for Z offset.
|
||||||
|
* - Probes triggering above the nozzle height are uncommon but do exist. When using
|
||||||
|
* probes such as this, carefully set Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES
|
||||||
|
* to avoid collisions during probing.
|
||||||
|
*
|
||||||
|
* Tune and Adjust
|
||||||
|
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
||||||
|
* - PROBE_OFFSET_WIZARD (configuration_adv.h) can be used for setting the Z offset.
|
||||||
*
|
*
|
||||||
* Assuming the typical work area orientation:
|
* Assuming the typical work area orientation:
|
||||||
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
||||||
|
|
|
@ -1084,7 +1084,8 @@
|
||||||
#if ENABLED(PROBE_OFFSET_WIZARD)
|
#if ENABLED(PROBE_OFFSET_WIZARD)
|
||||||
//
|
//
|
||||||
// Enable to init the Probe Z-Offset when starting the Wizard.
|
// Enable to init the Probe Z-Offset when starting the Wizard.
|
||||||
// Use the estimated nozzle-to-probe Z offset, plus a little more.
|
// Use a height slightly above the estimated nozzle-to-probe Z offset.
|
||||||
|
// For example, with an offset of -5, consider a starting height of -4.
|
||||||
//
|
//
|
||||||
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
||||||
|
|
||||||
|
@ -1197,6 +1198,7 @@
|
||||||
|
|
||||||
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
||||||
|
|
||||||
|
//#define NO_SD_AUTOSTART // Remove auto#.g file support completely to save some Flash, SRAM
|
||||||
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
||||||
|
|
||||||
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
||||||
|
|
|
@ -56,15 +56,15 @@
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= DELTA Printer ===============================
|
//============================= DELTA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a Delta printer start with one of the configuration files in the
|
// For a Delta printer, start with one of the configuration files in the config/examples/delta directory
|
||||||
// config/examples/delta directory and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= SCARA Printer ===============================
|
//============================= SCARA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a SCARA printer start with the configuration files in
|
// For a SCARA printer, start with one of the configuration files in the config/examples/SCARA directory
|
||||||
// config/examples/SCARA and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
@ -961,10 +961,20 @@
|
||||||
/**
|
/**
|
||||||
* Nozzle-to-Probe offsets { X, Y, Z }
|
* Nozzle-to-Probe offsets { X, Y, Z }
|
||||||
*
|
*
|
||||||
* - Use a caliper or ruler to measure the distance from the tip of
|
* X and Y offset
|
||||||
|
* Use a caliper or ruler to measure the distance from the tip of
|
||||||
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
||||||
|
*
|
||||||
|
* Z offset
|
||||||
* - For the Z offset use your best known value and adjust at runtime.
|
* - For the Z offset use your best known value and adjust at runtime.
|
||||||
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
* - Common probes trigger below the nozzle and have negative values for Z offset.
|
||||||
|
* - Probes triggering above the nozzle height are uncommon but do exist. When using
|
||||||
|
* probes such as this, carefully set Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES
|
||||||
|
* to avoid collisions during probing.
|
||||||
|
*
|
||||||
|
* Tune and Adjust
|
||||||
|
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
||||||
|
* - PROBE_OFFSET_WIZARD (configuration_adv.h) can be used for setting the Z offset.
|
||||||
*
|
*
|
||||||
* Assuming the typical work area orientation:
|
* Assuming the typical work area orientation:
|
||||||
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
||||||
|
|
|
@ -1084,7 +1084,8 @@
|
||||||
#if ENABLED(PROBE_OFFSET_WIZARD)
|
#if ENABLED(PROBE_OFFSET_WIZARD)
|
||||||
//
|
//
|
||||||
// Enable to init the Probe Z-Offset when starting the Wizard.
|
// Enable to init the Probe Z-Offset when starting the Wizard.
|
||||||
// Use the estimated nozzle-to-probe Z offset, plus a little more.
|
// Use a height slightly above the estimated nozzle-to-probe Z offset.
|
||||||
|
// For example, with an offset of -5, consider a starting height of -4.
|
||||||
//
|
//
|
||||||
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
||||||
|
|
||||||
|
@ -1197,6 +1198,7 @@
|
||||||
|
|
||||||
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
||||||
|
|
||||||
|
//#define NO_SD_AUTOSTART // Remove auto#.g file support completely to save some Flash, SRAM
|
||||||
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
||||||
|
|
||||||
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
||||||
|
|
|
@ -56,15 +56,15 @@
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= DELTA Printer ===============================
|
//============================= DELTA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a Delta printer start with one of the configuration files in the
|
// For a Delta printer, start with one of the configuration files in the config/examples/delta directory
|
||||||
// config/examples/delta directory and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= SCARA Printer ===============================
|
//============================= SCARA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a SCARA printer start with the configuration files in
|
// For a SCARA printer, start with one of the configuration files in the config/examples/SCARA directory
|
||||||
// config/examples/SCARA and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
@ -961,10 +961,20 @@
|
||||||
/**
|
/**
|
||||||
* Nozzle-to-Probe offsets { X, Y, Z }
|
* Nozzle-to-Probe offsets { X, Y, Z }
|
||||||
*
|
*
|
||||||
* - Use a caliper or ruler to measure the distance from the tip of
|
* X and Y offset
|
||||||
|
* Use a caliper or ruler to measure the distance from the tip of
|
||||||
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
||||||
|
*
|
||||||
|
* Z offset
|
||||||
* - For the Z offset use your best known value and adjust at runtime.
|
* - For the Z offset use your best known value and adjust at runtime.
|
||||||
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
* - Common probes trigger below the nozzle and have negative values for Z offset.
|
||||||
|
* - Probes triggering above the nozzle height are uncommon but do exist. When using
|
||||||
|
* probes such as this, carefully set Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES
|
||||||
|
* to avoid collisions during probing.
|
||||||
|
*
|
||||||
|
* Tune and Adjust
|
||||||
|
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
||||||
|
* - PROBE_OFFSET_WIZARD (configuration_adv.h) can be used for setting the Z offset.
|
||||||
*
|
*
|
||||||
* Assuming the typical work area orientation:
|
* Assuming the typical work area orientation:
|
||||||
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
||||||
|
|
|
@ -1084,7 +1084,8 @@
|
||||||
#if ENABLED(PROBE_OFFSET_WIZARD)
|
#if ENABLED(PROBE_OFFSET_WIZARD)
|
||||||
//
|
//
|
||||||
// Enable to init the Probe Z-Offset when starting the Wizard.
|
// Enable to init the Probe Z-Offset when starting the Wizard.
|
||||||
// Use the estimated nozzle-to-probe Z offset, plus a little more.
|
// Use a height slightly above the estimated nozzle-to-probe Z offset.
|
||||||
|
// For example, with an offset of -5, consider a starting height of -4.
|
||||||
//
|
//
|
||||||
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
||||||
|
|
||||||
|
@ -1197,6 +1198,7 @@
|
||||||
|
|
||||||
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
||||||
|
|
||||||
|
//#define NO_SD_AUTOSTART // Remove auto#.g file support completely to save some Flash, SRAM
|
||||||
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
||||||
|
|
||||||
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
||||||
|
|
|
@ -56,15 +56,15 @@
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= DELTA Printer ===============================
|
//============================= DELTA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a Delta printer start with one of the configuration files in the
|
// For a Delta printer, start with one of the configuration files in the config/examples/delta directory
|
||||||
// config/examples/delta directory and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= SCARA Printer ===============================
|
//============================= SCARA Printer ===============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
// For a SCARA printer start with the configuration files in
|
// For a SCARA printer, start with one of the configuration files in the config/examples/SCARA directory
|
||||||
// config/examples/SCARA and customize for your machine.
|
// from https://github.com/MarlinFirmware/Configurations/branches/all and customize for your machine.
|
||||||
//
|
//
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
@ -961,10 +961,20 @@
|
||||||
/**
|
/**
|
||||||
* Nozzle-to-Probe offsets { X, Y, Z }
|
* Nozzle-to-Probe offsets { X, Y, Z }
|
||||||
*
|
*
|
||||||
* - Use a caliper or ruler to measure the distance from the tip of
|
* X and Y offset
|
||||||
|
* Use a caliper or ruler to measure the distance from the tip of
|
||||||
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
* the Nozzle to the center-point of the Probe in the X and Y axes.
|
||||||
|
*
|
||||||
|
* Z offset
|
||||||
* - For the Z offset use your best known value and adjust at runtime.
|
* - For the Z offset use your best known value and adjust at runtime.
|
||||||
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
* - Common probes trigger below the nozzle and have negative values for Z offset.
|
||||||
|
* - Probes triggering above the nozzle height are uncommon but do exist. When using
|
||||||
|
* probes such as this, carefully set Z_CLEARANCE_DEPLOY_PROBE and Z_CLEARANCE_BETWEEN_PROBES
|
||||||
|
* to avoid collisions during probing.
|
||||||
|
*
|
||||||
|
* Tune and Adjust
|
||||||
|
* - Probe Offsets can be tuned at runtime with 'M851', LCD menus, babystepping, etc.
|
||||||
|
* - PROBE_OFFSET_WIZARD (configuration_adv.h) can be used for setting the Z offset.
|
||||||
*
|
*
|
||||||
* Assuming the typical work area orientation:
|
* Assuming the typical work area orientation:
|
||||||
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
* - Probe to RIGHT of the Nozzle has a Positive X offset
|
||||||
|
|
|
@ -1084,7 +1084,8 @@
|
||||||
#if ENABLED(PROBE_OFFSET_WIZARD)
|
#if ENABLED(PROBE_OFFSET_WIZARD)
|
||||||
//
|
//
|
||||||
// Enable to init the Probe Z-Offset when starting the Wizard.
|
// Enable to init the Probe Z-Offset when starting the Wizard.
|
||||||
// Use the estimated nozzle-to-probe Z offset, plus a little more.
|
// Use a height slightly above the estimated nozzle-to-probe Z offset.
|
||||||
|
// For example, with an offset of -5, consider a starting height of -4.
|
||||||
//
|
//
|
||||||
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
//#define PROBE_OFFSET_WIZARD_START_Z -4.0
|
||||||
|
|
||||||
|
@ -1197,6 +1198,7 @@
|
||||||
|
|
||||||
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
#define SD_MENU_CONFIRM_START // Confirm the selected SD file before printing
|
||||||
|
|
||||||
|
//#define NO_SD_AUTOSTART // Remove auto#.g file support completely to save some Flash, SRAM
|
||||||
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
//#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files
|
||||||
|
|
||||||
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
//#define BROWSE_MEDIA_ON_INSERT // Open the file browser when media is inserted
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue