| 53 | /// 触发模式枚举 |
| 54 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 55 | pub enum TriggerMode { |
| 56 | /// 关闭触发,使用连续采集模式 (Free Run) |
| 57 | Off, |
| 58 | /// 标准触发模式 (一帧一触发) |
| 59 | Standard, |
| 60 | /// 脉宽控制曝光 (Bulb 模式,曝光时间由信号宽度决定) |
| 61 | Bulb, |
| 62 | } |
| 63 | |
| 64 | /// 触发源枚举 |
| 65 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
nothing calls this directly
no outgoing calls
no test coverage detected