| 135 | } |
| 136 | |
| 137 | void DaxIqModel::removeStream(int channel) |
| 138 | { |
| 139 | int idx = channelIndex(channel); |
| 140 | if (idx < 0 || idx >= NUM_CHANNELS) return; |
| 141 | if (!m_streams[idx].exists || m_streams[idx].streamId == 0) return; |
| 142 | emit commandReady(QString("stream remove 0x%1").arg(m_streams[idx].streamId, 0, 16)); |
| 143 | } |
| 144 | |
| 145 | void DaxIqModel::setSampleRate(int channel, int rate) |
| 146 | { |
no outgoing calls
no test coverage detected