30#ifndef PicoOscilloscope_h
31#define PicoOscilloscope_h
35#include "RemoteBridgeOscilloscope.h"
78 bool DoAcquireData(
bool keep);
79 virtual void Stop()
override;
85 virtual std::set<InterleaveConflict> GetInterleaveConflicts()
override;
194 size_t GetDigitalPodIndex(
size_t i)
195 {
return (
i - m_digitalChannelBase) / 8; }
196 size_t GetDigitalLaneIndex(
size_t i)
197 {
return (
i - m_digitalChannelBase) % 8; }
200 void IdentifyHardware();
204 void FlushAllPendingWaveforms()
212 bool Is12BitModeAvailable();
213 bool Is14BitModeAvailable();
214 bool Is15BitModeAvailable();
215 bool Is16BitModeAvailable();
221 size_t GetEnabledAnalogChannelCountAToD()
223 size_t GetEnabledAnalogChannelCountEToH()
225 size_t GetEnabledAnalogChannelCountAToB()
227 size_t GetEnabledAnalogChannelCountCToD()
229 size_t GetEnabledAnalogChannelCountEToF()
231 size_t GetEnabledAnalogChannelCountGToH()
251 size_t m_analogChannelCount;
252 size_t m_digitalChannelBase;
253 size_t m_digitalChannelCount;
260 std::map<size_t, double> m_channelAttenuations;
261 std::map<int, bool> m_digitalBankPresent;
262 std::map<int, float> m_digitalThresholds;
263 std::map<int, float> m_digitalHysteresis;
267 float m_awgDutyCycle;
270 float m_awgFrequency;
280 bool m_picoHasExttrig;
281 bool m_picoHasBwlimiter;
282 std::vector<int> m_adcModes;
283 std::vector<unsigned int> m_BandwidthLimits;
300 std::unique_ptr<ComputePipeline> m_conversionPipeline;
310 static std::string GetDriverNameInternal();
Definition AcceleratorBuffer.h:204
Simple edge trigger.
Definition EdgeTrigger.h:44
A single channel of a function generator.
Definition FunctionGeneratorChannel.h:45
WaveShape
Predefined waveform shapes.
Definition FunctionGenerator.h:55
OutputImpedance
Nominal output impedance for a function generator channel.
Definition FunctionGenerator.h:259
A single channel on an oscilloscope.
Definition OscilloscopeChannel.h:49
TriggerMode
Definition Oscilloscope.h:398
PicoOscilloscope - driver for talking to the scopehal-pico-bridge daemons.
Definition PicoOscilloscope.h:42
std::recursive_mutex m_wipWaveformMutex
Mutex for m_wipWaveforms.
Definition PicoOscilloscope.h:303
virtual void DisableChannel(size_t i) override
Turn a channel off, given the index.
Definition PicoOscilloscope.cpp:613
bool CanEnableChannel3000Series8Bit(size_t i)
Checks if we can enable a channel on a 3000 series scope configured for 8-bit ADC resolution.
Definition PicoOscilloscope.cpp:1982
bool IsChannelIndexDigital(size_t i)
Checks if a channel index refers to a MSO channel.
Definition PicoOscilloscope.cpp:1506
bool CanEnableChannel5000Series8Bit(size_t i)
Checks if we can enable a channel on a 5000 series scope configured for 8-bit ADC resolution.
Definition PicoOscilloscope.cpp:1798
virtual std::vector< uint64_t > GetSampleRatesNonInterleaved() override
Get the legal sampling rates (in Hz) for this scope in all-channels mode.
Definition PicoOscilloscope.cpp:1034
virtual uint64_t GetSampleRate() override
Gets the current sampling rate (in Hz) of this scope.
Definition PicoOscilloscope.cpp:1105
virtual void FlushConfigCache() override
Instruments are allowed to cache configuration settings to reduce round trip queries to the device.
Definition PicoOscilloscope.cpp:569
virtual void SetFunctionChannelDutyCycle(int chan, float duty) override
Sets the duty cycle for a function generator output.
Definition PicoOscilloscope.cpp:2321
virtual std::vector< AnalogBank > GetAnalogBanks() override
Gets the analog banks for this instrument.
Definition PicoOscilloscope.cpp:1165
virtual float GetDigitalHysteresis(size_t channel) override
Gets the hysteresis for a digital input.
Definition PicoOscilloscope.cpp:1352
virtual bool AcquireData() override
Pull data from the instrument.
Definition PicoOscilloscope.cpp:793
virtual void SetFunctionChannelFrequency(int chan, float hz) override
Sets the frequency for a function generator output.
Definition PicoOscilloscope.cpp:2364
std::string GetChannelColor(size_t i)
Color the channels based on Pico's standard color sequence (blue-red-green-yellow-purple-gray-cyan-ma...
Definition PicoOscilloscope.cpp:306
bool CanEnableChannel2000Series8Bit(size_t i)
Checks if we can enable a channel on a 2000 series scope configured for 8-bit ADC resolution.
Definition PicoOscilloscope.cpp:2100
virtual std::vector< unsigned int > GetChannelBandwidthLimiters(size_t i) override
Gets the set of available bandwidth limiters for an input channel.
Definition PicoOscilloscope.cpp:683
virtual Oscilloscope::TriggerMode PollTrigger() override
Checks the curent trigger status.
Definition PicoOscilloscope.cpp:763
virtual OscilloscopeChannel * GetExternalTrigger() override
Returns the external trigger input channel, if we have one.
Definition PicoOscilloscope.cpp:699
virtual void Stop() override
Stops triggering.
Definition PicoOscilloscope.cpp:705
virtual bool CanEnableChannel(size_t i) override
Determines if a channel can be enabled.
Definition PicoOscilloscope.cpp:1511
bool CanEnableChannel5000Series16Bit(size_t i)
Checks if we can enable a channel on a 5000 series scope configured for 16-bit ADC resolution.
Definition PicoOscilloscope.cpp:1900
virtual bool IsADCModeConfigurable() override
Returns true if the ADC is configurable, false if it can only run in one mode.
Definition PicoOscilloscope.cpp:1178
virtual size_t GetADCMode(size_t channel) override
Gets the ADC mode for a channel.
Definition PicoOscilloscope.cpp:1277
uint32_t m_dropUntilSeq
Sequence number to drop until (if we get stale data after stopping the trigger)
Definition PicoOscilloscope.h:291
virtual void SetTriggerOffset(int64_t offset) override
Sets the trigger offset.
Definition PicoOscilloscope.cpp:1127
virtual bool CanInterleave() override
Returns true if we have no interleave conflicts, false if we have conflicts.
Definition PicoOscilloscope.cpp:1029
virtual std::vector< uint64_t > GetSampleRatesInterleaved() override
Get the legal sampling rates (in Hz) for this scope in combined-channels mode.
Definition PicoOscilloscope.cpp:1060
bool CanEnableChannel6000Series10Bit(size_t i)
Checks if we can enable a channel on a 6000 series scope configured for 10-bit ADC resolution.
Definition PicoOscilloscope.cpp:1704
virtual std::vector< DigitalBank > GetDigitalBanks() override
Gets the digital channel banks for this instrument.
Definition PicoOscilloscope.cpp:1303
bool CanEnableChannel6000Series12Bit(size_t i)
Checks if we can enable a channel on a 6000 series scope configured for 12-bit ADC resolution.
Definition PicoOscilloscope.cpp:1757
bool CanEnableChannel6000Series8Bit(size_t i)
Checks if we can enable a channel on a 6000 series scope configured for 8-bit ADC resolution.
Definition PicoOscilloscope.cpp:1606
virtual void SetFunctionChannelAmplitude(int chan, float amplitude) override
Sets the amplitude for a function generator output.
Definition PicoOscilloscope.cpp:2332
virtual void SetSampleRate(uint64_t rate) override
Sets the sample rate of the scope, in Hz.
Definition PicoOscilloscope.cpp:1121
virtual bool IsChannelEnabled(size_t i) override
Checks if a channel is enabled in hardware.
Definition PicoOscilloscope.cpp:577
virtual bool HasFunctionRiseFallTimeControls(int chan) override
Determines if the function generator allows control over rise/fall times.
Definition PicoOscilloscope.cpp:2433
virtual std::vector< std::string > GetADCModeNames(size_t channel) override
Gets the names of the ADC modes for the bank a given channel is located in.
Definition PicoOscilloscope.cpp:1220
virtual void SetChannelAttenuation(size_t i, double atten) override
Sets the probe attenuation used for an input channel.
Definition PicoOscilloscope.cpp:671
bool CanEnableChannel4000Series14Bit(size_t i)
Checks if we can enable a channel on a 4000 series scope configured for 14-bit ADC resolution.
Definition PicoOscilloscope.cpp:1962
virtual void BackgroundProcessing() override
Run various background processing typically done by a second thread (e.g. InstrumentThread)
Definition PicoOscilloscope.cpp:722
bool CanEnableChannel5000Series14Bit(size_t i)
Checks if we can enable a channel on a 5000 series scope configured for 14-bit ADC resolution.
Definition PicoOscilloscope.cpp:1855
virtual std::vector< WaveShape > GetAvailableWaveformShapes(int chan) override
Query the set of available pre-defined waveforms for this generator.
Definition PicoOscilloscope.cpp:2284
virtual float GetFunctionChannelOffset(int chan) override
Gets the DC offset for a function generator output.
Definition PicoOscilloscope.cpp:2343
virtual unsigned int GetInstrumentTypes() const override
Returns a bitfield describing the set of instrument types that this instrument supports.
Definition PicoOscilloscope.cpp:545
uint32_t m_lastSeq
Most recently received sequence number.
Definition PicoOscilloscope.h:288
virtual void SetDigitalHysteresis(size_t channel, float level) override
Sets the hysteresis for a digital input.
Definition PicoOscilloscope.cpp:1364
virtual void SetChannelBandwidthLimit(size_t i, unsigned int limit_mhz) override
Sets the bandwidth limit for an input channel.
Definition PicoOscilloscope.cpp:694
SequenceSet m_wipWaveforms
Waveforms actively being downloaded and processed but not ready to push to the filter graph yet.
Definition PicoOscilloscope.h:306
virtual float GetFunctionChannelFrequency(int chan) override
Gets the frequency for a function generator output.
Definition PicoOscilloscope.cpp:2359
bool Is10BitModeAvailable()
Checks if higher ADC resolutions are available.
Definition PicoOscilloscope.cpp:2109
virtual float GetFunctionChannelDutyCycle(int chan) override
Gets the duty cycle for a function generator output.
Definition PicoOscilloscope.cpp:2316
virtual double GetChannelAttenuation(size_t i) override
Gets the probe attenuation for an input channel.
Definition PicoOscilloscope.cpp:658
virtual bool SetInterleaving(bool combine) override
Configures the scope to combine channels.
Definition PicoOscilloscope.cpp:1147
virtual uint64_t GetSampleDepth() override
Gets the current sample depth of this scope.
Definition PicoOscilloscope.cpp:1110
bool CanEnableChannel3000Series10Bit(size_t i)
Checks if we can enable a channel on a 3000 series scope configured for 10-bit ADC resolution.
Definition PicoOscilloscope.cpp:2051
size_t GetEnabledDigitalPodCount()
Returns the total number of 8-bit MSO pods which are currently enabled.
Definition PicoOscilloscope.cpp:1436
bool CanEnableChannel4000Series12Bit(size_t i)
Checks if we can enable a channel on a 4000 series scope configured for 12-bit ADC resolution.
Definition PicoOscilloscope.cpp:1925
size_t GetEnabledAnalogChannelCountRange(size_t start, size_t end)
Returns the total number of analog channels in the requested range which are currently enabled.
Definition PicoOscilloscope.cpp:1449
virtual void SetSampleDepth(uint64_t depth) override
Sets the sample depth of the scope.
Definition PicoOscilloscope.cpp:1115
virtual OutputImpedance GetFunctionChannelOutputImpedance(int chan) override
Gets the currently selected output impedance for a function generator output (if supported)
Definition PicoOscilloscope.cpp:2438
std::vector< std::unique_ptr< AcceleratorBuffer< int16_t > > > m_analogRawWaveformBuffers
Buffers for storing raw ADC samples before converting to fp32.
Definition PicoOscilloscope.h:294
virtual int64_t GetTriggerOffset() override
Gets the trigger offset.
Definition PicoOscilloscope.cpp:1136
virtual WaveShape GetFunctionChannelShape(int chan) override
Gets the waveform shape for a function generator output.
Definition PicoOscilloscope.cpp:2370
unsigned int m_nextWaveformWriteBuffer
Index of next buffer from m_analogRawWaveformBuffers to use.
Definition PicoOscilloscope.h:297
virtual std::vector< OscilloscopeChannel::CouplingType > GetAvailableCouplings(size_t i) override
Gets the set of legal coupling values for an input channel.
Definition PicoOscilloscope.cpp:635
virtual void SetFunctionChannelOutputImpedance(int chan, OutputImpedance z) override
Sets the currently selected output impedance for a function generator output (if supported)
Definition PicoOscilloscope.cpp:2443
virtual AnalogBank GetAnalogBank(size_t channel) override
Gets the bank containing a given channel.
Definition PicoOscilloscope.cpp:1172
size_t GetEnabledAnalogChannelCount()
Returns the total number of analog channels which are currently enabled.
Definition PicoOscilloscope.cpp:1422
virtual void SetFunctionChannelShape(int chan, WaveShape shape) override
Sets the waveform shape for a function generator output.
Definition PicoOscilloscope.cpp:2375
virtual bool IsInterleaving() override
Checks if the scope is currently combining channels.
Definition PicoOscilloscope.cpp:1141
virtual void SetFunctionChannelActive(int chan, bool on) override
Turns a function generator channel on or off.
Definition PicoOscilloscope.cpp:2306
virtual float GetFunctionChannelAmplitude(int chan) override
Gets the amplitude for a function generator output.
Definition PicoOscilloscope.cpp:2327
virtual unsigned int GetChannelBandwidthLimit(size_t i) override
Gets the bandwidth limit for an input channel.
Definition PicoOscilloscope.cpp:688
virtual bool IsTriggerArmed() override
Checks if the trigger is currently armed.
Definition PicoOscilloscope.cpp:1024
virtual void SetDigitalThreshold(size_t channel, float level) override
Gets the threshold for a digital input.
Definition PicoOscilloscope.cpp:1374
virtual float GetDigitalThreshold(size_t channel) override
Gets the threshold for a digital input.
Definition PicoOscilloscope.cpp:1358
virtual bool IsDigitalHysteresisConfigurable() override
Checks if digital input hysteresis is configurable or fixed.
Definition PicoOscilloscope.cpp:1339
bool IsDigitalPodActive(size_t npod)
Check if any channels in an MSO pod are enabled.
Definition PicoOscilloscope.cpp:1492
bool IsDigitalPodPresent(size_t npod)
Check if a MSO pod is present.
Definition PicoOscilloscope.cpp:1466
bool CanEnableChannel5000Series12Bit(size_t i)
Checks if we can enable a channel on a 5000 series scope configured for 12-bit ADC resolution.
Definition PicoOscilloscope.cpp:1826
virtual std::vector< uint64_t > GetSampleDepthsNonInterleaved() override
Get the legal memory depths for this scope in all-channels mode.
Definition PicoOscilloscope.cpp:1074
virtual bool IsDigitalThresholdConfigurable() override
Checks if digital input threshold is configurable or fixed.
Definition PicoOscilloscope.cpp:1347
virtual uint32_t GetInstrumentTypesForChannel(size_t i) const override
Returns a bitfield describing the set of instrument types that a given channel supports.
Definition PicoOscilloscope.cpp:554
bool CanEnableChannel5000Series15Bit(size_t i)
Checks if we can enable a channel on a 5000 series scope configured for 15-bit ADC resolution.
Definition PicoOscilloscope.cpp:1875
virtual DigitalBank GetDigitalBank(size_t channel) override
Gets the bank containing a given channel.
Definition PicoOscilloscope.cpp:1332
virtual void SetADCMode(size_t channel, size_t mode) override
Sets the ADC mode for a channel.
Definition PicoOscilloscope.cpp:1289
virtual void PushTrigger() override
Pushes changes made to m_trigger to the instrument.
Definition PicoOscilloscope.cpp:1153
virtual void SetFunctionChannelOffset(int chan, float offset) override
Sets the DC offset for a function generator output.
Definition PicoOscilloscope.cpp:2348
void PushPendingWaveformsIfReady()
Wait up to 1ms for waveform conversion to finish, then push it to the pending waveforms buffer if it'...
Definition PicoOscilloscope.cpp:735
virtual std::vector< uint64_t > GetSampleDepthsInterleaved() override
Get the legal memory depths for this scope in combined-channels mode.
Definition PicoOscilloscope.cpp:1098
virtual void EnableChannel(size_t i) override
Turn a channel on, given the index.
Definition PicoOscilloscope.cpp:591
virtual bool GetFunctionChannelActive(int chan) override
Returns true if the function generator channel's output is enabled.
Definition PicoOscilloscope.cpp:2301
An oscilloscope connected over a SDK-to-SCPI bridge that follows our pattern (i.e....
Definition RemoteBridgeOscilloscope.h:40
An SCPI-based function generator.
Definition SCPIFunctionGenerator.h:38
Abstraction of a transport layer for moving SCPI data between endpoints.
Definition SCPITransport.h:53