* @brief Pushes the current trigger configuration into the Dashboard engine. */
| 497 | * @brief Pushes the current trigger configuration into the Dashboard engine. |
| 498 | */ |
| 499 | void Widgets::Plot::pushSweepConfig() |
| 500 | { |
| 501 | UI::Dashboard::instance().setPlotSweep(m_index, |
| 502 | m_sweepEnabled, |
| 503 | m_triggerLevel, |
| 504 | static_cast<int>(m_triggerEdge), |
| 505 | static_cast<int>(m_sweepMode), |
| 506 | m_holdoffMs * 0.001, |
| 507 | m_timebaseMs * 0.001); |
| 508 | } |
| 509 | |
| 510 | //-------------------------------------------------------------------------------------------------- |
| 511 | // Data updates |
nothing calls this directly
no test coverage detected