sdrangel/sdrbase/dsp/scopevis.cpp

209 lines
5.0 KiB
C++
Raw Normal View History

#include "dsp/scopevis.h"
#include "gui/glscope.h"
#include "dsp/dspcommands.h"
#include "util/messagequeue.h"
2015-07-06 03:17:51 -04:00
#include <cstdio>
2015-07-13 17:38:10 -04:00
#include <iostream>
2015-07-06 03:17:51 -04:00
2015-07-13 04:46:51 -04:00
MESSAGE_CLASS_DEFINITION(ScopeVis::MsgConfigureScopeVis, Message)
ScopeVis::ScopeVis(GLScope* glScope) :
m_glScope(glScope),
2015-07-06 19:17:16 -04:00
m_trace(96000),
m_fill(0),
m_triggerState(Untriggered),
m_triggerChannel(TriggerFreeRun),
2015-07-13 17:38:10 -04:00
m_triggerLevel(0.0),
2015-07-13 04:46:51 -04:00
m_triggerPositiveEdge(true),
2015-07-13 20:18:55 -04:00
m_triggerOneShot(false),
2015-07-13 18:04:34 -04:00
m_armed(false),
m_sampleRate(0)
{
}
2015-07-13 04:46:51 -04:00
void ScopeVis::configure(MessageQueue* msgQueue, TriggerChannel triggerChannel, Real triggerLevel, bool triggerPositiveEdge)
{
2015-07-13 04:46:51 -04:00
Message* cmd = MsgConfigureScopeVis::create(triggerChannel, triggerLevel, triggerPositiveEdge);
cmd->submit(msgQueue, this);
}
2014-06-15 04:32:25 -04:00
void ScopeVis::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly)
{
if (m_triggerChannel == TriggerFreeRun) {
m_triggerPoint = begin;
}
else if (m_triggerState == Triggered) {
m_triggerPoint = begin;
}
else if (m_triggerState == Untriggered) {
m_triggerPoint = end;
}
else if (m_triggerState == WaitForReset) {
m_triggerPoint = end;
}
else {
m_triggerPoint = begin;
}
2015-07-13 04:46:51 -04:00
while(begin < end)
{
if (m_triggerChannel == TriggerFreeRun)
{
int count = end - begin;
if(count > (int)(m_trace.size() - m_fill))
count = m_trace.size() - m_fill;
std::vector<Complex>::iterator it = m_trace.begin() + m_fill;
for(int i = 0; i < count; ++i) {
*it++ = Complex(begin->real() / 32768.0, begin->imag() / 32768.0);
++begin;
}
m_fill += count;
if(m_fill >= m_trace.size()) {
m_glScope->newTrace(m_trace, m_sampleRate);
m_fill = 0;
}
}
2015-07-13 17:38:10 -04:00
else
2015-07-13 04:46:51 -04:00
{
2015-07-13 20:18:55 -04:00
if(m_triggerState == WaitForReset)
{
2015-07-13 20:56:54 -04:00
break;
2015-07-13 20:18:55 -04:00
}
2015-07-13 18:04:34 -04:00
if(m_triggerState == Untriggered)
{
while(begin < end)
{
if (triggerCondition(begin) ^ !m_triggerPositiveEdge) {
if (m_armed) {
m_triggerState = Triggered;
m_armed = false;
m_triggerPoint = begin;
2015-07-13 18:04:34 -04:00
break;
}
}
else {
m_armed = true;
}
++begin;
}
}
2015-07-13 18:04:34 -04:00
if(m_triggerState == Triggered)
{
int count = end - begin;
if(count > (int)(m_trace.size() - m_fill))
count = m_trace.size() - m_fill;
std::vector<Complex>::iterator it = m_trace.begin() + m_fill;
for(int i = 0; i < count; ++i) {
*it++ = Complex(begin->real() / 32768.0, begin->imag() / 32768.0);
++begin;
}
m_fill += count;
if(m_fill >= m_trace.size()) {
m_glScope->newTrace(m_trace, m_sampleRate);
m_fill = 0;
2015-07-13 20:18:55 -04:00
if (m_triggerOneShot) {
m_triggerState = WaitForReset;
} else {
m_triggerState = Untriggered;
}
}
}
}
}
}
void ScopeVis::start()
{
}
void ScopeVis::stop()
{
}
bool ScopeVis::handleMessageKeep(Message* message)
{
if(DSPSignalNotification::match(message)) {
DSPSignalNotification* signal = (DSPSignalNotification*)message;
m_sampleRate = signal->getSampleRate();
/*fprintf(stderr, "ScopeVis::handleMessage : %d samples/sec, %lld Hz offset, traceSize: \n",
m_sampleRate,
signal->getFrequencyOffset(),
m_trace.size());*/
return true;
2015-07-13 04:46:51 -04:00
} else if(MsgConfigureScopeVis::match(message)) {
MsgConfigureScopeVis* conf = (MsgConfigureScopeVis*)message;
m_triggerState = Untriggered;
m_triggerChannel = (TriggerChannel) conf->getTriggerChannel();
2015-07-13 17:38:10 -04:00
m_triggerLevel = conf->getTriggerLevel();
2015-07-13 04:46:51 -04:00
m_triggerPositiveEdge = conf->getTriggerPositiveEdge();
2015-07-13 17:38:10 -04:00
std::cerr << "ScopeVis::handleMessageKeep:"
<< " m_triggerChannel: " << m_triggerChannel
<< " m_triggerLevel: " << m_triggerLevel
<< " m_triggerPositiveEdge: " << (m_triggerPositiveEdge ? "edge+" : "edge-") << std::endl;
2015-07-13 04:46:51 -04:00
return true;
/*
} else if(DSPConfigureScopeVis::match(message)) {
DSPConfigureScopeVis* conf = (DSPConfigureScopeVis*)message;
m_triggerState = Untriggered;
m_triggerChannel = (TriggerChannel)conf->getTriggerChannel();
m_triggerLevelHigh = conf->getTriggerLevelHigh() * 32767;
m_triggerLevelLow = conf->getTriggerLevelLow() * 32767;
2015-07-13 04:46:51 -04:00
return true;*/
} else {
return false;
}
}
bool ScopeVis::handleMessage(Message* message)
{
bool done = handleMessageKeep(message);
if (done)
{
message->completed();
}
return done;
}
2015-07-06 19:17:16 -04:00
void ScopeVis::setSampleRate(int sampleRate)
{
m_sampleRate = sampleRate;
}
2015-07-13 17:38:10 -04:00
bool ScopeVis::triggerCondition(SampleVector::const_iterator& it)
{
Complex c(it->real()/32768.0, it->imag()/32768.0);
if (m_triggerChannel == TriggerChannelI) {
return c.real() > m_triggerLevel;
}
else if (m_triggerChannel == TriggerChannelQ) {
return c.imag() > m_triggerLevel;
}
else if (m_triggerChannel == TriggerMagLin) {
return abs(c) > m_triggerLevel;
}
else if (m_triggerChannel == TriggerMagDb) {
Real mult = (10.0f / log2f(10.0f));
Real v = c.real() * c.real() + c.imag() * c.imag();
return mult * log2f(v) > m_triggerLevel;
}
else if (m_triggerChannel == TriggerPhase) {
return arg(c) / M_PI > m_triggerLevel;
}
else {
return false;
}
}
2015-07-13 20:18:55 -04:00
void ScopeVis::setOneShot(bool oneShot)
{
m_triggerOneShot = oneShot;
2015-07-13 20:56:54 -04:00
if ((m_triggerState == WaitForReset) && !oneShot) {
m_triggerState = Untriggered;
}
2015-07-13 20:18:55 -04:00
}