| 269 | } |
| 270 | |
| 271 | void |
| 272 | ProfileConfigTab::refreshTrueSampleRate(void) |
| 273 | { |
| 274 | float step = SU_POW(10., SU_FLOOR(SU_LOG(this->profile.getSampleRate()))); |
| 275 | QString rateText; |
| 276 | qreal trueRate = static_cast<qreal>(this->getSelectedSampleRate()) |
| 277 | / this->ui->decimationSpin->value(); |
| 278 | if (step >= 10.f) |
| 279 | step /= 10.f; |
| 280 | |
| 281 | this->ui->trueRateLabel->setText(getSampRateString(trueRate)); |
| 282 | } |
| 283 | |
| 284 | void |
| 285 | ProfileConfigTab::refreshAnalyzerTypeUi(void) |
no test coverage detected