TSI_Config/displacement_ds.h

22 lines
514 B
C
Raw Permalink Normal View History

2025-03-28 14:13:30 +08:00
#ifndef DISPLACEMENT_DS_H
#define DISPLACEMENT_DS_H
// 位移峰峰值的量程范围
typedef enum {
kDisPP100 = 0, // 0-100 um
kDisPP150 = 1, // 0-150 um
kDisPP200 = 2, // 0-200 um
kDisPP400 = 3, // 0-400 um
kDisPP500 = 4, // 0-500 um
kDisPPCustom = 5 // custom
} DisPPFullScaleRange;
2025-03-28 15:32:39 +08:00
// recorder out
typedef enum {
kDisRecorderOutNone = 0,
kDisRecorderOutDirectAmpl = 1,
2025-04-23 17:13:05 +08:00
kDisRecorderOut1XAmpl = 2,
kDisRecorderOut2XAmpl = 3
2025-03-28 15:32:39 +08:00
} DisRecorderOut;
2025-03-28 14:13:30 +08:00
#endif // DISPLACEMENT_DS_H