* @brief Pushes the current trigger configuration into the Dashboard engine. */
| 567 | * @brief Pushes the current trigger configuration into the Dashboard engine. |
| 568 | */ |
| 569 | void Widgets::MultiPlot::pushSweepConfig() |
| 570 | { |
| 571 | UI::Dashboard::instance().setMultiplotSweep(m_index, |
| 572 | m_sweepEnabled, |
| 573 | m_triggerLevel, |
| 574 | static_cast<int>(m_triggerEdge), |
| 575 | static_cast<int>(m_sweepMode), |
| 576 | m_holdoffMs * 0.001, |
| 577 | m_triggerSource, |
| 578 | m_timebaseMs * 0.001); |
| 579 | } |
| 580 | |
| 581 | //-------------------------------------------------------------------------------------------------- |
| 582 | // Data updates |
nothing calls this directly
no test coverage detected