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

📄 rmp_cntl.h

📁 在ccs编程环境下
💻 H
字号:

#ifndef __RMP_CNTL_H__
#define __RMP_CNTL_H__

typedef struct { _iq  target_value; 	/* Input: Target input (pu) */
				 long  rmp_dly_max;		/* Parameter: Maximum delay rate (Q0) - independently with global Q */			
		 	 	 _iq  rmp_lo_limit;		/* Parameter: Minimum limit (pu) */					  
				 _iq  rmp_hi_limit;		/* Parameter: Maximum limit (pu) */
				 long  rmp_delay_cntl;  /* Variable: Incremental delay (Q0) - independently with global Q */	
				 _iq  setpt_value;		/* Output: Target output (pu) */				 
				 long  s_eq_t_flg;		/* Output: Flag output (Q0) - independently with global Q */
		  	  	 void  (*calc)();	  	/* Po_iqer to calculation function */ 
				 } RMPCNTL;	            

typedef RMPCNTL *RMPCNTL_handle;
/*-----------------------------------------------------------------------------
Default initalizer for the RMPCNTL object.
-----------------------------------------------------------------------------*/                     
#define RMPCNTL_DEFAULTS { 0, \
                           40, \
                          	_IQ(-1), \
                          	_IQ(1), \
                          	0, \
                          	0, \
                          	0, \
                   			(void (*)(long))rmp_cntl_calc }

/*------------------------------------------------------------------------------
Prototypes for the functions in RMP_CNTL.C
------------------------------------------------------------------------------*/
void rmp_cntl_calc(RMPCNTL_handle);

#endif /* __RMP_CNTL_H__ */

⌨️ 快捷键说明

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