MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / setCwSpeed

Method setCwSpeed

src/models/TransmitModel.cpp:680–688  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

678// ── CW commands ─────────────────────────────────────────────────────────────
679
680void TransmitModel::setCwSpeed(int wpm)
681{
682 wpm = qBound(5, wpm, 100);
683 if (m_cwSpeed != wpm) {
684 m_cwSpeed = wpm;
685 emit phoneStateChanged();
686 }
687 emit commandReady(QString("cw wpm %1").arg(wpm));
688}
689
690void TransmitModel::setCwPitch(int hz)
691{

Callers 5

cmdKSMethod · 0.80
registerMidiParamsMethod · 0.80
buildCwPanelMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected