Adds DRILL_CYCLE feature#28245
Open
Switchleg1 wants to merge 8 commits intoMarlinFirmware:bugfix-2.1.xfrom
Open
Adds DRILL_CYCLE feature#28245Switchleg1 wants to merge 8 commits intoMarlinFirmware:bugfix-2.1.xfrom
Switchleg1 wants to merge 8 commits intoMarlinFirmware:bugfix-2.1.xfrom
Conversation
commenting out the feature as the auto build fails to compile for mega2560 due to firmware image being larger than 256k
Contributor
|
Related PR: Related issue: |
Instead of feeding gcode commands we are now using the destination variable along with prepare_line_to_destination() to complete the move.
Author
Lol, oh well it wasn't in the current release and I needed the functionality today |
Contributor
|
#define DRILL_CYCLES should be disabled by default In Configuration_adv.h |
we now check the planner to see if its currently clearing the buffer from a M410 (quick stop) call, if so we quit the function. this allows for the FREEZE switch to stop the machine smoothly followed by a M410 to clear the buffer allowing us to continue machining without having to dial in our part again.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
/**
*/
Benefits
This can be used with CAM software to perform drilling operations.
Configurations
#define DRILL_CYCLES
#if ENABLED(DRILL_CYCLES)
//#define DRILL_USE_81_ONLY //Uses G81.x sub commands
#define DRILL_CYCLES_XY_FEEDRATE 1600 //Feedrate for xy operations
#define DRILL_CYCLES_RETRACT_FEEDRATE 1200 //Feedrate while retracting
#define DRILL_CYCLES_DEFAULT_FEEDRATE 300 //Default drilling freedrate if one is not specified
#define DRILL_CYCLES_DEFAULT_PECK 2.0 //Default pecking distance if one is not specified
#define DRILL_CYCLES_DEFAULT_DWELL 0 //Default dwell distance if one is not specified
#endif