This commit is contained in:
2026-03-20 21:19:53 +08:00
parent 9d3b4b836f
commit 6a749331db
125 changed files with 29972 additions and 23051 deletions

View File

@@ -2,9 +2,9 @@
#define __parameter_h__
//******************************************************************************
#include "GlobeTypeDef.h"
#include "ConstDefine.h"
#include "StorageType.h"
//#include "GlobeTypeDef.h"
//#include "ConstDefine.h"
//#include "StorageType.h"
//******************************************************************************
//Display Language
#define CHINESE 0
@@ -12,6 +12,7 @@
#define CHN_ENG 2
#define LANGUAGE CHN_ENG
#define LANGUAGE_MAX ENGLISH
#define LANGUAGE_MIN CHINESE
//------------------------------------------------------------------------------
//<2F><>Ӧʱ<D3A6><EFBFBD><E4B6A8>
#define RESP_125MS 0
@@ -23,12 +24,12 @@
#define RESP_MAX 6
#define TIMING_BASE 125 // 125MS
#define BASE_125MS ((2^RESP_125MS) * TIMING_BASE)
#define BASE_250MS ((2^RESP_250MS) * TIMING_BASE)
#define BASE_500MS ((2^RESP_500MS) * TIMING_BASE)
#define BASE_1000MS ((2^RESP_1000MS) * TIMING_BASE)
#define BASE_2000MS ((2^RESP_2000MS) * TIMING_BASE)
#define BASE_4000MS ((2^RESP_4000MS) * TIMING_BASE)
#define BASE_125MS TIMING_BASE
#define BASE_250MS (BASE_125MS * 2)
#define BASE_500MS (BASE_250MS * 2)
#define BASE_1000MS (BASE_500MS * 2)
#define BASE_2000MS (BASE_1000MS * 2)
#define BASE_4000MS (BASE_2000MS * 2)
#define TIMEBASE_MAX BASE_4000MS
#define TIMING_500mS 64
@@ -102,5 +103,7 @@
//******************************************************************************
#define INSTRUMENT_FACTOR 1
#define ERROR_CORRECT 0
//******************************************************************************
//******************************************************************************
#endif