motion_struct.h
来自「CNC 的开放码,EMC2 V2.2.8版」· C头文件 代码 · 共 35 行
H
35 行
/********************************************************************* 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 + =
减小字号Ctrl + -
显示快捷键?