⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 motion_struct.h

📁 CNC 的开放码,EMC2 V2.2.8版
💻 H
字号:
/********************************************************************* Description: motion_struct.h*   A data structure used in only a few places** Author:* License: GPL Version 2* System: Linux** Copyright (c) 2004 All rights reserved** Last change:* $Revision: 1.1 $* $Author: jepler $* $Date: 2007/03/22 22:15:25 $********************************************************************/#ifndef MOTION_STRUCT_H#define MOTION_STRUCT_H/* big comm structure, for upper memory */    typedef struct emcmot_struct_t {	struct emcmot_command_t command;	/* struct used to pass commands/data					   to the RT module from usr space */	struct emcmot_status_t status;	/* Struct used to store RT status */	struct emcmot_config_t config;	/* Struct used to store RT config */	struct emcmot_internal_t internal;	/*! \todo FIXME - doesn't need to be in					   shared memory */	struct emcmot_error_t error;	/* ring buffer for error messages */	struct emcmot_debug_t debug;	/* Struct used to store RT status and debug				   data - 2nd largest block */    } emcmot_struct_t;#endif // MOTION_STRUCT_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -