| 2131 | } |
| 2132 | |
| 2133 | void SigSession::set_collect_mode(DEVICE_COLLECT_MODE m) |
| 2134 | { |
| 2135 | assert(!_is_working); |
| 2136 | |
| 2137 | if (_clt_mode != m) |
| 2138 | { |
| 2139 | _clt_mode = m; |
| 2140 | _repeat_hold_prg = 0; |
| 2141 | } |
| 2142 | |
| 2143 | _callback->trigger_message(DSV_MSG_COLLECT_MODE_CHANGED); |
| 2144 | } |
| 2145 | |
| 2146 | void SigSession::repeat_capture_wait_timeout() |
| 2147 | { |
no test coverage detected