X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fsaleae-logic16%2Fprotocol.h;h=00979a305cedd825bd29fcad3cba5beeb2030369;hb=16aca7661b7ab34a399c323bb9214721e2b1be0c;hp=8a1ded823900e7ae41c194f355d1a73b5f07fb15;hpb=155b680da482cea2381becb73c51cfb838bff31e;p=libsigrok.git diff --git a/src/hardware/saleae-logic16/protocol.h b/src/hardware/saleae-logic16/protocol.h index 8a1ded82..00979a30 100644 --- a/src/hardware/saleae-logic16/protocol.h +++ b/src/hardware/saleae-logic16/protocol.h @@ -35,8 +35,16 @@ enum voltage_range { VOLTAGE_RANGE_5_V, /* 5V logic */ }; +enum fpga_variant { + FPGA_VARIANT_ORIGINAL, + FPGA_VARIANT_MCUPRO /* mcupro clone v4.6 with Actel FPGA */ +}; + /** Private, per-device-instance driver context. */ struct dev_context { + /** Distinguishing between original Logic16 and clones */ + enum fpga_variant fpga_variant; + /* * Since we can't keep track of a Logic16 device after upgrading * the firmware (it renumerates into a different device address @@ -51,6 +59,9 @@ struct dev_context { /** Maximum number of samples to capture, if nonzero. */ uint64_t limit_samples; + /** Percent of the samples that should be captured before the trigger. */ + uint64_t capture_ratio; + /** The currently configured input voltage of the device. */ enum voltage_range cur_voltage_range;