X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=hardware%2Ffx2lafw%2Ffx2lafw.h;h=5735f4c1fc62ada12b930ec7118e953d90c92904;hb=187b358232aa90de8ee12df915506f839a98f2ad;hp=f0ea12ccd9384f5e6fc61201ee98f13e3b17956f;hpb=f302a082567d10f90cd20fca5a7abd68d7267d96;p=libsigrok.git diff --git a/hardware/fx2lafw/fx2lafw.h b/hardware/fx2lafw/fx2lafw.h index f0ea12cc..5735f4c1 100644 --- a/hardware/fx2lafw/fx2lafw.h +++ b/hardware/fx2lafw/fx2lafw.h @@ -20,4 +20,23 @@ #ifndef LIBSIGROK_HARDWARE_FX2LAFW #define LIBSIGROK_HARDWARE_FX2LAFW +struct fx2lafw_profile { + uint16_t vid; + uint16_t pid; + + char *vendor; + char *model; + char *model_version; + + int num_probes; +}; + +struct fx2lafw_device { + struct fx2lafw_profile *profile; + + void *session_data; + + struct sr_usb_device_instance *usb; +}; + #endif