X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignalbase.hpp;h=a2d23244f0e1d007aad79543f909fce796c8ab0c;hp=4889d16acd4bc1ba75878cfe132e2d07b1202193;hb=06b6ce26694bdde31c7d5b703c4dda36f4a25938;hpb=472a80c58cfdbd37cb00b5ba2ef4bcd923f9b54b diff --git a/pv/data/signalbase.hpp b/pv/data/signalbase.hpp index 4889d16a..a2d23244 100644 --- a/pv/data/signalbase.hpp +++ b/pv/data/signalbase.hpp @@ -21,6 +21,10 @@ #ifndef PULSEVIEW_PV_DATA_SIGNALBASE_HPP #define PULSEVIEW_PV_DATA_SIGNALBASE_HPP +#include +#include +#include + #include #include #include @@ -28,6 +32,9 @@ #include +using std::atomic; +using std::condition_variable; +using std::mutex; using std::shared_ptr; namespace sigrok { @@ -48,19 +55,26 @@ class SignalBase : public QObject public: enum ChannelType { - AnalogChannel = 1, - LogicChannel, - DecodeChannel, - A2LChannel, // Analog converted to logic, joint representation - MathChannel + AnalogChannel = 1, ///< Analog data + LogicChannel, ///< Logic data + DecodeChannel, ///< Protocol Decoder channel using libsigrokdecode + A2LChannel, ///< Analog converted to logic, joint representation + MathChannel ///< Virtual channel generated by math operations + }; + + enum ConversionType { + NoConversion = 0, + A2LConversionByTreshold = 1, + A2LConversionBySchmittTrigger = 2 }; private: static const int ColourBGAlpha; + static const uint64_t ConversionBlockSize; public: SignalBase(shared_ptr channel, ChannelType channel_type); - virtual ~SignalBase() {} + virtual ~SignalBase(); public: /** @@ -85,10 +99,19 @@ public: ChannelType type() const; /** - * Gets the index number of this channel. + * Gets the index number of this channel, i.e. a unique ID assigned by + * the device driver. */ unsigned int index() const; + /** + * Returns which bit of a given sample for this signal represents the + * signal itself. This is relevant for compound signals like logic, + * rather meaningless for everything else but provided in case there + * is a conversion active that provides a digital signal using bit #0. + */ + unsigned int logic_bit_index() const; + /** * Gets the name of this signal. */ @@ -134,17 +157,35 @@ public: */ shared_ptr logic_data() const; + /** + * Queries the kind of conversion performed on this channel. + */ + ConversionType get_conversion_type() const; + + /** + * Changes the kind of conversion performed on this channel. + */ + void set_conversion_type(ConversionType t); + #ifdef ENABLE_DECODE bool is_decode_signal() const; +#endif - shared_ptr decoder_stack() const; + virtual void save_settings(QSettings &settings) const; - void set_decoder_stack(shared_ptr decoder_stack); -#endif + virtual void restore_settings(QSettings &settings); + +private: + bool conversion_is_a2l() const; + + uint8_t convert_a2l_threshold(float threshold, float value); + uint8_t convert_a2l_schmitt_trigger(float lo_thr, float hi_thr, + float value, uint8_t &state); - void save_settings(QSettings &settings) const; + void conversion_thread_proc(QObject* segment); - void restore_settings(QSettings &settings); + void start_conversion(); + void stop_conversion(); Q_SIGNALS: void enabled_changed(const bool &value); @@ -153,14 +194,32 @@ Q_SIGNALS: void colour_changed(const QColor &colour); -private: + void conversion_type_changed(const ConversionType t); + + void samples_cleared(); + + void samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample); + +private Q_SLOTS: + void on_samples_cleared(); + + void on_samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample); + + void on_capture_state_changed(int state); + +protected: shared_ptr channel_; ChannelType channel_type_; shared_ptr data_; + shared_ptr converted_data_; + ConversionType conversion_type_; -#ifdef ENABLE_DECODE - shared_ptr decoder_stack_; -#endif + std::thread conversion_thread_; + atomic conversion_interrupt_; + mutex conversion_input_mutex_; + condition_variable conversion_input_cond_; QString internal_name_, name_; QColor colour_, bgcolour_;