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

📄 emcmotglb.h

📁 Source code for an Numeric Cmputer
💻 H
字号:
/********************************************************************* Description: emcmotglb.h*   Declarations for globals whose default values are found in emcmotcfg.h**   Derived from a work by Fred Proctor & Will Shackleford** Author:* License: GPL Version 2* System: Linux*    * Copyright (c) 2004 All rights reserved.** Last change:* $Revision: 1.8 $* $Author: paul_c $* $Date: 2005/06/13 14:38:42 $********************************************************************/#ifndef EMCMOTGLB_H#define EMCMOTGLB_H#ifdef __cplusplusextern "C" {#endif#define EMCMOT_INIFILE_LEN 256/*! \todo FIXME - eventually want to convert all of these to lowercase,   uppercase is for constants only*//*! \todo FIXME - want to move some of these out of here completely...   too many globals - put in emcmotXXX structs instead, perhaps?*/    extern char EMCMOT_INIFILE[EMCMOT_INIFILE_LEN];    extern unsigned int SHMEM_KEY;    extern double EMCMOT_COMM_TIMEOUT;	/* seconds until timeout */    extern double EMCMOT_COMM_WAIT;	/* seconds to delay between tries */    extern int num_axes;    extern double VELOCITY;    extern double ACCELERATION;    extern double MAX_LIMIT;    extern double MIN_LIMIT;    extern double MAX_OUTPUT;    extern double MIN_OUTPUT;    extern int TC_QUEUE_SIZE;    extern int MMXAVG_SIZE;/*! \todo Another #if 0 */#if 0    // Moved to emcmotDebug struct    extern double tMmxavgSpace[];    extern double sMmxavgSpace[];    extern double nMmxavgSpace[];#endif    extern double MAX_FERROR;/*! \todo Another #if 0 */#if 0    extern double P_GAIN;    extern double I_GAIN;    extern double D_GAIN;    extern double FF0_GAIN;    extern double FF1_GAIN;    extern double FF2_GAIN;    extern double BIAS;    extern double MAX_ERROR;#endif    extern double BACKLASH;/*! \todo Another #if 0 */#if 0    extern double INPUT_SCALE;    extern double INPUT_OFFSET;    extern double OUTPUT_SCALE;    extern double OUTPUT_OFFSET;#endif#ifdef __cplusplus}				/* matches extern "C" at top */#endif#endif				/* EMCMOTGLB_H */

⌨️ 快捷键说明

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