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

📄 ftankcalculate.h

📁 这是一个潜入式开发的c语言代码
💻 H
字号:
/*#########################################################################

  ftankcalculate.h - definitions/declarations of tank calculations.

		Copyright (c) 2005-2006, RICHISLAND All rights reserved.
  
  Purpose		:
  Version       :1.00
  Author        :
  Complete Date :

  Function List :
  History       :
  _________________________________________________________________________
  DATE          AUTHOR    VERSION    DESCRIBE
  -------------------------------------------------------------------------
  2006-08-22              Ver1.00    Create

#########################################################################*/
#ifndef __F_TANKCALCULATE_H__
#define __F_TANKCALCULATE_H__

#include "gcontrol.h"
#include "fcalculate.h"
#include "ftankvolume.h"


#ifdef __cplusplus
extern "C" {
#endif

#define MIN_TANK_TEMPNUM	2
#define MAX_TEMPPOINT_NUM	10


typedef struct tag_TempPoints
{
	INT32 Num;
	CalTag Temperature[MAX_TEMPPOINT_NUM];
}TempPoints;

/* initialize coefficients */
Boolean ftankcal_Init(CHAR* tankCfgFile, CHAR* volumeCfgFile);

/* calculate associated dataitem for tank */
VOID ftankcal_CalTank(FTagGroup* group);


#ifdef __cplusplus
}
#endif

#endif // __F_TANKCALCULATE_H__

⌨️ 快捷键说明

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