CNC workspace planes and 'P' argument for G2/G3

This commit is contained in:
Scott Lahteine
2017-06-23 14:28:28 -05:00
parent 5fb0d401eb
commit 80a232419d
27 changed files with 370 additions and 137 deletions

View File

@ -178,4 +178,12 @@ enum LCDViewAction {
};
#endif
/**
* Workspace planes only apply to G2/G3 moves
* (and "canned cycles" - not a current feature)
*/
#if ENABLED(CNC_WORKSPACE_PLANES)
enum WorkspacePlane { PLANE_XY, PLANE_ZX, PLANE_YZ };
#endif
#endif // __ENUM_H__