资源简介
arduino GCode_Interpreterdc G代码解释器 也可以当做c语言g代码解释器参考 不坑爹
代码片段和文件信息
// Arduino G-code Interpreter
// v1.0 Carlos guilarte y diego colonnello...
// Modificado para manejar tres ejes en un cnc chimbo... jejeje
#include
//our command string
#define COMMAND_SIZE 128
#include “WProgram.h“
void setup();
void loop();
void init_process_string();
void process_string(char instruction[] int size);
double search_string(char key char instruction[] int string_size);
bool has_command(char key char instruction[] int string_size);
void init_steppers();
void dda_move(long micro_delay);
bool can_step(byte min_pin byte max_pin long current long target byte direction);
void do_step(byte pinA byte pinB byte dir);
bool read_switch(byte pin);
long to_steps(float steps_per_unit float units);
void set_target(float x float y float z);
void set_position(float x float y float z);
void calculate_deltas();
long calculate_feedrate_delay(float feedrate);
long getMaxSpeed();
void disable_steppers();
char palabra[COMMAND_SIZE];
byte serial_count;
int
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 108586 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 18109 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 13 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 59003 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 38133 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 53232 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 22420 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 3352 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 25316 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 10464 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 9056 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 8096 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 9464 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 6568 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 4204 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 7068 2009-11-17 21:48 GCode_Interpreterdc\ap
文件 1076 2009-11-15 22:22 GCode_Interpreterdc\GCode_Interpreterdc.pde
文件 7999 2009-11-15 22:22 GCode_Interpreterdc\process_string.pde
文件 6850 2009-11-15 22:48 GCode_Interpreterdc\stepper_control.pde
文件 1368 2009-11-16 01:49 GCode_Interpreterdc\_init.pde
目录 0 2009-11-17 21:48 GCode_Interpreterdc\ap
目录 0 2009-11-17 21:48 GCode_Interpreterdc
----------- --------- ---------- ----- ----
400377 22
- 上一篇:RSA数字签名程序(C++实现)
- 下一篇:C语言ATM机(取款机)源代码完美版
相关资源
- C语言程序设计谭浩强版最全配套)
- 64位libstdc++.so.6.0.22,解决glibcxx not f
- 全方位图像展开程序
- vibe运动目标提取opencv C++源代码
- C语言解析精粹第二版pdf()
- blender 源代码 c c++ git 2016-4-3同步获取
- 纯C语言——电子相册
- VC++串口modbus测试工程
- Visual C++从入门到精通(第3版) 高清
- windows标准打印机状态转换为AEA标准
- MFC下实现OpenGL纹理贴图
- C语言四大圣经
- C++软件渲染管线
- Goc编程工具
- gcc.tar(gcc-4.8.5-39.el7.x86_64.rpm)
- mfc复制文件显示进度
- CTP行情接收工具和行情拆分工具 完整
- CC3D飞控资料(代码原理图)
- 基于VS2010MFC平台使用C++编写的上位机
- C++内存管理课件——侯捷老师
- Programming principles and practice Using C++ (
- 黑马程序员最新24期C/C++全栈培训讲义
- vb关于api编程的pdf电子书《Visual basi
- MSVBCRT.AIO.2020.04.10.X86+X64.zip
- MFC项目:图书管理系统
- QR码二维码编码C++源代码VS2010编译环境
- QR二维码解码,C++源代码VS2010编译环境
- cmake-3.12.0-win64-x64
- 数据结构与算法分析:C语言描述(原
- 11_人脸检测与识别系统.zip
评论
共有 条评论