57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/****************************************************************************
|
|
** pulse.h
|
|
**
|
|
** Copyright (c) Siargo Ltd. 2020
|
|
** All Rights Reserved.
|
|
**
|
|
** BY HYY
|
|
**
|
|
** pulse.c的宏定义和声明
|
|
**
|
|
**
|
|
** 文件历史
|
|
** 2020-04-27 韩堉元创建
|
|
*****************************************************************************/
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __PulseDefine_H__
|
|
#define __PulseDefine_H__
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
/* 宏定义 ----------------------------------------------------------------*/
|
|
#define PULSE_0_1ML -4
|
|
#define PULSE_1ML -3
|
|
#define PULSE_10ML -2
|
|
#define PULSE_100ML -1
|
|
#define PULSE_1L 0
|
|
#define PULSE_10L 1
|
|
#define PULSE_100L 2
|
|
#define PULSE_1000L 3
|
|
#define PULSE_10000L 4
|
|
|
|
#define PULSE_1ML_VAL 1
|
|
#define PULSE_10ML_VAL 10
|
|
#define PULSE_100ML_VAL 100
|
|
#define PULSE_1L_VAL 1000
|
|
#define PULSE_10L_VAL 10000
|
|
#define PULSE_100L_VAL 100000
|
|
#define PULSE_1000L_VAL 1000000
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__ pulse_H */
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/************************ Copyright (c) Siargo Ltd. 2020 *****END OF FILE****/
|