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

Method setNbLevel

src/models/SliceModel.cpp:220–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220void SliceModel::setNbLevel(int v)
221{
222 v = std::clamp(v, 0, 100);
223 if (m_nbLevel == v) return;
224 m_nbLevel = v;
225 sendCommand(QString("slice set %1 nb_level=%2").arg(m_id).arg(v));
226 emit nbLevelChanged(v);
227}
228
229void SliceModel::setNrLevel(int v)
230{

Callers 5

cmdRxNbParamMethod · 0.80
cmdSetLevelMethod · 0.80
cmdZZNLMethod · 0.80
cmdNLMethod · 0.80
buildTabContentMethod · 0.80

Calls 1

sendCommandFunction · 0.85

Tested by

no test coverage detected