]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/scpi-pps/protocol.c
scpi-pps: properly set encoding digits
[libsigrok.git] / src / hardware / scpi-pps / protocol.c
index c4b73add15b3dec0605caf67aa766efa218f825a..1cd157598e2461331515685d394bf55266d22a87 100644 (file)
@@ -17,6 +17,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <string.h>
 #include <strings.h>
 #include <stdarg.h>
@@ -53,33 +54,19 @@ SR_PRIV int select_channel(const struct sr_dev_inst *sdi, struct sr_channel *ch)
        return ret;
 }
 
-SR_PRIV struct sr_channel *next_enabled_channel(const struct sr_dev_inst *sdi,
-               struct sr_channel *cur_channel)
-{
-       struct sr_channel *next_channel;
-       GSList *l;
-
-       next_channel = cur_channel;
-       do {
-               l = g_slist_find(sdi->channels, next_channel);
-               if (l && l->next)
-                       next_channel = l->next->data;
-               else
-                       next_channel = sdi->channels->data;
-       } while (!next_channel->enabled);
-
-       return next_channel;
-}
-
 SR_PRIV int scpi_pps_receive_data(int fd, int revents, void *cb_data)
 {
        struct dev_context *devc;
        struct sr_datafeed_packet packet;
        struct sr_datafeed_analog analog;
+       struct sr_analog_encoding encoding;
+       struct sr_analog_meaning meaning;
+       struct sr_analog_spec spec;
        const struct sr_dev_inst *sdi;
        struct sr_channel *next_channel;
        struct sr_scpi_dev_inst *scpi;
        struct pps_channel *pch;
+       const struct channel_spec *ch_spec;
        float f;
        int cmd;
 
@@ -97,25 +84,34 @@ SR_PRIV int scpi_pps_receive_data(int fd, int revents, void *cb_data)
        /* Retrieve requested value for this state. */
        if (sr_scpi_get_float(scpi, NULL, &f) == SR_OK) {
                pch = devc->cur_channel->priv;
+               ch_spec = &devc->device->channels[pch->hw_output_idx];
                packet.type = SR_DF_ANALOG;
                packet.payload = &analog;
-               analog.channels = g_slist_append(NULL, devc->cur_channel);
+               sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
+               analog.meaning->channels = g_slist_append(NULL, devc->cur_channel);
                analog.num_samples = 1;
-               analog.mq = pch->mq;
-               if (pch->mq == SR_MQ_VOLTAGE)
-                       analog.unit = SR_UNIT_VOLT;
-               else if (pch->mq == SR_MQ_CURRENT)
-                       analog.unit = SR_UNIT_AMPERE;
-               else if (pch->mq == SR_MQ_POWER)
-                       analog.unit = SR_UNIT_WATT;
-               analog.mqflags = SR_MQFLAG_DC;
+               analog.meaning->mq = pch->mq;
+               if (pch->mq == SR_MQ_VOLTAGE) {
+                       analog.meaning->unit = SR_UNIT_VOLT;
+                       analog.encoding->digits = ch_spec->voltage[4];
+                       analog.spec->spec_digits = ch_spec->voltage[3];
+               } else if (pch->mq == SR_MQ_CURRENT) {
+                       analog.meaning->unit = SR_UNIT_AMPERE;
+                       analog.encoding->digits = ch_spec->current[4];
+                       analog.spec->spec_digits = ch_spec->current[3];
+               } else if (pch->mq == SR_MQ_POWER) {
+                       analog.meaning->unit = SR_UNIT_WATT;
+                       analog.encoding->digits = ch_spec->power[4];
+                       analog.spec->spec_digits = ch_spec->power[3];
+               }
+               analog.meaning->mqflags = SR_MQFLAG_DC;
                analog.data = &f;
                sr_session_send(sdi, &packet);
-               g_slist_free(analog.channels);
+               g_slist_free(analog.meaning->channels);
        }
 
        if (g_slist_length(sdi->channels) > 1) {
-               next_channel = next_enabled_channel(sdi, devc->cur_channel);
+               next_channel = sr_next_enabled_channel(sdi, devc->cur_channel);
                if (select_channel(sdi, next_channel) != SR_OK) {
                        sr_err("Failed to select channel %s", next_channel->name);
                        return FALSE;