X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fhardware%2Frdtech-um%2Fprotocol.h;h=ac147d8c026af5eca945103aa3c47a02862caad2;hb=HEAD;hp=dfe1cd75642421812454ddb93e5dba80027fe3bb;hpb=c1f4f5894782580e78c47b68b9e2d0da2723e829;p=libsigrok.git diff --git a/src/hardware/rdtech-um/protocol.h b/src/hardware/rdtech-um/protocol.h index dfe1cd75..ac147d8c 100644 --- a/src/hardware/rdtech-um/protocol.h +++ b/src/hardware/rdtech-um/protocol.h @@ -33,17 +33,27 @@ enum rdtech_um_model_id { RDTECH_UM34C = 0x0d4c, }; -/* Supported device profiles */ +struct rdtech_um_channel_desc { + const char *name; + struct binary_value_spec spec; + struct sr_rational scale; + int digits; + enum sr_mq mq; + enum sr_unit unit; +}; + struct rdtech_um_profile { const char *model_name; enum rdtech_um_model_id model_id; - const struct binary_analog_channel *channels; + const struct rdtech_um_channel_desc *channels; + size_t channel_count; gboolean (*csum_ok)(const uint8_t *buf, size_t len); }; struct dev_context { const struct rdtech_um_profile *profile; struct sr_sw_limits limits; + struct feed_queue_analog **feeds; uint8_t buf[RDTECH_UM_BUFSIZE]; size_t buflen; int64_t cmd_sent_at;