1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-08 06:06:33 -04:00
sdrangel/include-gpl/dsp/scopevis.h

93 lines
2.8 KiB
C
Raw Normal View History

#ifndef INCLUDE_SCOPEVIS_H
#define INCLUDE_SCOPEVIS_H
2015-07-20 16:51:49 -04:00
#include <boost/circular_buffer.hpp>
#include "dsp/samplesink.h"
#include "util/export.h"
2015-07-13 04:46:51 -04:00
#include "util/message.h"
class GLScope;
class MessageQueue;
class SDRANGELOVE_API ScopeVis : public SampleSink {
public:
enum TriggerChannel {
TriggerFreeRun,
TriggerChannelI,
2015-07-13 04:46:51 -04:00
TriggerChannelQ,
TriggerMagLin,
TriggerMagDb,
TriggerPhase
};
ScopeVis(GLScope* glScope = NULL);
2015-07-20 16:51:49 -04:00
void configure(MessageQueue* msgQueue, TriggerChannel triggerChannel, Real triggerLevel, bool triggerPositiveEdge, uint triggerDelay);
2015-07-13 20:18:55 -04:00
void setOneShot(bool oneShot);
2014-06-15 04:32:25 -04:00
void feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly);
void start();
void stop();
bool handleMessageKeep(Message* message);
bool handleMessage(Message* message);
2015-07-06 19:17:16 -04:00
void setSampleRate(int sampleRate);
int getSampleRate() const { return m_sampleRate; }
SampleVector::const_iterator getTriggerPoint() const { return m_triggerPoint; }
2015-07-06 19:17:16 -04:00
private:
2015-07-13 04:46:51 -04:00
class MsgConfigureScopeVis : public Message {
MESSAGE_CLASS_DECLARATION
public:
int getTriggerChannel() const { return m_triggerChannel; }
Real getTriggerLevel() const { return m_triggerLevel; }
Real getTriggerPositiveEdge() const { return m_triggerPositiveEdge; }
2015-07-20 16:51:49 -04:00
uint getTriggerDelay() const { return m_triggerDelay; }
2015-07-13 04:46:51 -04:00
2015-07-20 16:51:49 -04:00
static MsgConfigureScopeVis* create(int triggerChannel, Real triggerLevel, bool triggerPositiveEdge, uint triggerDelay)
2015-07-13 04:46:51 -04:00
{
2015-07-20 16:51:49 -04:00
return new MsgConfigureScopeVis(triggerChannel, triggerLevel, triggerPositiveEdge, triggerDelay);
2015-07-13 04:46:51 -04:00
}
private:
int m_triggerChannel;
Real m_triggerLevel;
bool m_triggerPositiveEdge;
2015-07-20 16:51:49 -04:00
uint m_triggerDelay;
2015-07-13 04:46:51 -04:00
2015-07-20 16:51:49 -04:00
MsgConfigureScopeVis(int triggerChannel, Real triggerLevel, bool triggerPositiveEdge, uint triggerDelay) :
2015-07-13 04:46:51 -04:00
Message(),
m_triggerChannel(triggerChannel),
m_triggerLevel(triggerLevel),
2015-07-20 16:51:49 -04:00
m_triggerPositiveEdge(triggerPositiveEdge),
m_triggerDelay(triggerDelay)
2015-07-13 04:46:51 -04:00
{ }
};
enum TriggerState {
Untriggered,
Triggered,
WaitForReset
};
GLScope* m_glScope;
2015-07-20 16:51:49 -04:00
std::vector<Complex> m_trace; //!< Raw trace to be used by GLScope
boost::circular_buffer<Complex> m_traceback; //!< FIFO for samples prior to triggering point to support trigger delay (when in triggered mode)
uint m_tracebackCount; //!< Count of samples stored into trace memory since triggering is active up to trace memory size
uint m_fill;
TriggerState m_triggerState;
TriggerChannel m_triggerChannel;
2015-07-13 17:38:10 -04:00
Real m_triggerLevel;
2015-07-13 04:46:51 -04:00
bool m_triggerPositiveEdge;
2015-07-20 16:51:49 -04:00
uint m_triggerDelay; //!< Trigger delay in number of samples
2015-07-13 20:18:55 -04:00
bool m_triggerOneShot;
2015-07-13 18:04:34 -04:00
bool m_armed;
int m_sampleRate;
SampleVector::const_iterator m_triggerPoint;
2015-07-13 17:38:10 -04:00
bool triggerCondition(SampleVector::const_iterator& it);
};
#endif // INCLUDE_SCOPEVIS_H