()
| 41 | |
| 42 | impl Default for TriggerConfig { |
| 43 | fn default() -> Self { |
| 44 | Self { |
| 45 | mode: TriggerMode::Off, |
| 46 | source: TriggerSource::Software, |
| 47 | polarity: TriggerPolarity::RisingEdge, |
| 48 | delay_us: 0, |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | /// 触发模式枚举 |
nothing calls this directly
no outgoing calls
no test coverage detected