| 1575 | } |
| 1576 | |
| 1577 | void FlexControlDialog::setStepSize(int hz) |
| 1578 | { |
| 1579 | if (hz <= 0) |
| 1580 | return; |
| 1581 | m_stepHz = hz; |
| 1582 | if (m_stepLabel) |
| 1583 | m_stepLabel->setText(formatStep(hz)); |
| 1584 | } |
| 1585 | |
| 1586 | void FlexControlDialog::setPhysicalReady(bool ready, const QString& port) |
| 1587 | { |
no test coverage detected