关闭 cri-s 打开了这个问题 2015 年 2 月 16 日 · 1条评论 注释 危机 评论了 2015 年 2 月 16 日 如何将其转换回 G2/G3 代码? void mc_arc(float *position, float *target, float *offset, uint8_t axis_0, uint8_t axis_1, uint8_t axis_linear, float feed_rate, uint8_t invert_feed_rate, float radius, uint8_t isclockwise) 与此相同 void mc_line(float x, float y, float z, float feed_rate, uint8_t invert_feed_rate) invert_feed_rate 有什么特别之处,或者只是传递 feed_rate 并 传递 G94 和 G95 Gcode,那就是? 这个问题的原因是,对于另一个问题的某些事情, 我使用了 Gcode 解析器并为 gcode 翻译器制作了 sceleton。 实际上它只发出 dwell spindle_run coolant_run mc_line 的代码, 但是在 mc_line 和 mc_arc 固定之后,它可以很好地修改。 成员 香奈儿 评论了 2015 年 2 月 19 日 @cri-s:我建议阅读 linux cnc g 代码说明。Grbl 非常非常密切地关注这些。 chamnit已完成 关闭 2015 年 2 月 19 日 喜欢 (0) 到目前为止,我的 DIY cnc 和激光雕刻机在 lasergrbl 的 0.5W 和 15W 激光模块上工作正常。 今天我试图设置 cnc 主轴(12V,最大 11000rpm)并为此使用 grblcontrol。 移动轴工作正常。 #494 任何主轴同步计划 #602 v1.3.8-EDGE 重启后键盘快捷键消失 #427 关闭 无法在 gsender 1.2.0 中打开 .gcode 文件 #367 RaspberryPi 运行 gsender 时出现问题 #89 向 fluidnc 发送 $$ 会导致 gsender 崩溃 #473 v1.3.8-EDGE 重启后键盘快捷键消失 #427 关闭无法在 gsender 1.2.0 中打开 .gcode 文件 #367RaspberryPi 运行 gsender 时出现问题 #89向 fluidnc 发送 $$ 会导致 gsender 崩溃 #473功能请求:抑制发送到机器的 gcode 中的 gcode 注释。 #444 关闭通过网络连接进行连接 #171操纵杆运动的剩余问题 #204 关闭新版本认为我的机器一直处于锁定状态 #474 关闭
如何将其转换回 G2/G3 代码?
void mc_arc(float *position, float *target, float *offset, uint8_t axis_0, uint8_t axis_1,
uint8_t axis_linear, float feed_rate, uint8_t invert_feed_rate, float radius, uint8_t isclockwise)
与此相同
void mc_line(float x, float y, float z, float feed_rate, uint8_t invert_feed_rate)
invert_feed_rate 有什么特别之处,或者只是传递 feed_rate 并
传递 G94 和 G95 Gcode,那就是?
这个问题的原因是,对于另一个问题的某些事情,
我使用了 Gcode 解析器并为 gcode 翻译器制作了 sceleton。
实际上它只发出 dwell spindle_run coolant_run mc_line 的代码,
但是在 mc_line 和 mc_arc 固定之后,它可以很好地修改。