23 lines
600 B
C
23 lines
600 B
C
/*
|
||
* @Author: mypx
|
||
* @Date: 2025-09-24 11:34:56
|
||
* @LastEditTime: 2025-09-25 11:10:15
|
||
* @LastEditors: mypx mypx_coder@163.com
|
||
* @Description:
|
||
*/
|
||
#ifndef __PM_CONFIG_H__
|
||
#define __PM_CONFIG_H__
|
||
|
||
#define PM_WAVE_LENGTH_DEF 589.0f // 波长,默认钠D线589nm
|
||
#define PM_TUBE_LENGTH_DEF 1.0f // 旋光管长度,默认1dm
|
||
#define PM_TEMP_DEF 25.0f // 温度,默认25摄氏度
|
||
#define PM_MEAS_MODE_DEF 0
|
||
|
||
#define PM_TUBE_LENGTH_MAX 300 // 单位:mm
|
||
#define PM_TUBE_LENGTH_MIN 100
|
||
|
||
#define PM_TARGET_TEMP_MAX 60.0f
|
||
#define PM_TARGET_TEMP_MIN 10.0f
|
||
|
||
#endif // __PM_CONFIG_H__
|