mirror of https://github.com/EspoTek/Labrador.git
Doesn't calculate spectrum every frame
This commit is contained in:
parent
1755213a47
commit
b3f0ef9eda
|
@ -7,6 +7,8 @@
|
|||
#include <iostream>
|
||||
#include <omp.h>
|
||||
|
||||
static constexpr int kSpectrumCounterMax = 4;
|
||||
|
||||
isoDriver::isoDriver(QWidget *parent) : QLabel(parent)
|
||||
{
|
||||
this->hide();
|
||||
|
@ -615,6 +617,18 @@ void isoDriver::setTriggerMode(int newMode)
|
|||
//0 for off, 1 for ana, 2 for dig, -1 for ana750, -2 for file
|
||||
void isoDriver::frameActionGeneric(char CH1_mode, char CH2_mode)
|
||||
{
|
||||
|
||||
// The Spectrum is computationally expensive to calculate, so we don't want to do it on every frame
|
||||
static int spectrumCounter = 0;
|
||||
if(spectrum)
|
||||
{
|
||||
spectrumCounter = (spectrumCounter + 1) % kSpectrumCounterMax;
|
||||
|
||||
if (spectrumCounter != 0)
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
//qDebug() << "made it to frameActionGeneric";
|
||||
if(!paused_CH1 && CH1_mode == - 1){
|
||||
for (unsigned int i=0;i<(length/ADC_SPF);i++){
|
||||
|
|
Loading…
Reference in New Issue