]> sigrok.org Git - libsigrok.git/commitdiff
beaglelogic: Add missing scan options, and cleanup.
authorBert Vermeulen <redacted>
Tue, 16 Sep 2014 21:51:38 +0000 (23:51 +0200)
committerBert Vermeulen <redacted>
Tue, 16 Sep 2014 21:51:38 +0000 (23:51 +0200)
src/hardware/beaglelogic/api.c

index cd0023e4dc62be89080df9546810b5611f2a2c73..3f83a9168b4b68d2520eba870b1a47fa95814687 100644 (file)
 SR_PRIV struct sr_dev_driver beaglelogic_driver_info;
 static struct sr_dev_driver *di = &beaglelogic_driver_info;
 
-/* Hardware capabiities */
+/* Scan options */
+static const uint32_t scanopts[] = {
+       SR_CONF_NUM_LOGIC_CHANNELS,
+};
+
+/* Hardware capabilities */
 static const uint32_t devopts[] = {
        SR_CONF_LOGIC_ANALYZER,
        SR_CONF_SAMPLERATE,
@@ -52,9 +57,9 @@ SR_PRIV const char *beaglelogic_channel_names[NUM_CHANNELS + 1] = {
 
 /* Possible sample rates : 10 Hz to 100 MHz = (100 / x) MHz */
 static const uint64_t samplerates[] = {
-               SR_HZ(10),
-               SR_MHZ(100),
-               SR_HZ(1),
+       SR_HZ(10),
+       SR_MHZ(100),
+       SR_HZ(1),
 };
 
 static int init(struct sr_context *sr_ctx)
@@ -302,6 +307,10 @@ static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *
 
        ret = SR_OK;
        switch (key) {
+       case SR_CONF_SCAN_OPTIONS:
+               *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
+                               scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
+               break;
        case SR_CONF_DEVICE_OPTIONS:
                *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
                                devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));