X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.h;h=e6a5140989dcea0a58ec8ace4a40bae4714eba3a;hp=fb0b7dfbb89f1ce3d96366952f8198d3bac2fed3;hb=4871ed92f2d9e6e514223383ba16e6ad78c81161;hpb=29efe92a807a93572b44369d2703f572778ebb15 diff --git a/pv/device/devinst.h b/pv/device/devinst.h index fb0b7dfb..e6a51409 100644 --- a/pv/device/devinst.h +++ b/pv/device/devinst.h @@ -32,8 +32,8 @@ #include struct sr_dev_inst; -struct sr_probe; -struct sr_probe_group; +struct sr_channel; +struct sr_channel_group; namespace pv { @@ -51,21 +51,21 @@ protected: public: virtual sr_dev_inst* dev_inst() const = 0; - void use(SigSession *owner); + virtual void use(SigSession *owner) throw(QString); - void release(); + virtual void release(); SigSession* owner() const; virtual std::string format_device_title() const = 0; - GVariant* get_config(const sr_probe_group *group, int key); + GVariant* get_config(const sr_channel_group *group, int key); - bool set_config(const sr_probe_group *group, int key, GVariant *data); + bool set_config(const sr_channel_group *group, int key, GVariant *data); - GVariant* list_config(const sr_probe_group *group, int key); + GVariant* list_config(const sr_channel_group *group, int key); - void enable_probe(const sr_probe *probe, bool enable = true); + void enable_probe(const sr_channel *probe, bool enable = true); /** * @brief Gets the sample limit from the driver. @@ -75,6 +75,13 @@ public: */ uint64_t get_sample_limit(); + virtual bool is_trigger_enabled() const; + +public: + virtual void start(); + + virtual void run(); + signals: void config_changed();