summaryrefslogtreecommitdiff
path: root/Sprinter/arc_func.h
diff options
context:
space:
mode:
authormidopple <mdoppler@gmx.at>2012-01-29 19:18:06 +0100
committermidopple <mdoppler@gmx.at>2012-01-29 19:18:06 +0100
commit2ffe5ec2b5ecb390eb8ffacc584b614b2263bdf4 (patch)
tree0eb0f91c7c22fae418b0f868952891324d1c66aa /Sprinter/arc_func.h
parentfa63b839c6cbf261f2655e8783bf4745cc9ca513 (diff)
parent132f8c212e4c316559177e532df6b9a6c2205bf2 (diff)
Merge commit '132f8c212e4c316559177e532df6b9a6c2205bf2' into experimental
Diffstat (limited to 'Sprinter/arc_func.h')
-rw-r--r--Sprinter/arc_func.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/Sprinter/arc_func.h b/Sprinter/arc_func.h
new file mode 100644
index 0000000..03ecd9d
--- /dev/null
+++ b/Sprinter/arc_func.h
@@ -0,0 +1,32 @@
+/*
+ arc_func.h - high level interface for issuing motion commands
+ Part of Grbl
+
+ Copyright (c) 2009-2011 Simen Svale Skogsrud
+ Copyright (c) 2011 Sungeun K. Jeon
+
+ Grbl is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ Grbl is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Grbl. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef arc_func_h
+#define arc_func_h
+
+// Execute an arc in offset mode format. position == current xyz, target == target xyz,
+// offset == offset from current xyz, axis_XXX defines circle plane in tool space, axis_linear is
+// the direction of helical travel, radius == circle radius, isclockwise boolean. Used
+// for vector transformation direction.
+void mc_arc(float *position, float *target, float *offset, unsigned char axis_0, unsigned char axis_1,
+ unsigned char axis_linear, float feed_rate, float radius, unsigned char isclockwise);
+
+#endif