]> sigrok.org Git - libsigrok.git/blobdiff - hardware/openbench-logic-sniffer/api.c
ols: Implement SR_DI_HWOPTS.
[libsigrok.git] / hardware / openbench-logic-sniffer / api.c
index c3e1647d3bbb1cf352d3f2945aa2b03b4c213b4f..c9ca8f0a28eb8d734fd1474e689117024d7d4641 100644 (file)
 
 #define SERIALCOMM "115200/8n1"
 
+static const int hwopts[] = {
+       SR_HWOPT_CONN,
+       SR_HWOPT_SERIALCOMM,
+       0,
+};
+
 static const int hwcaps[] = {
        SR_HWCAP_LOGIC_ANALYZER,
        SR_HWCAP_SAMPLERATE,
@@ -250,6 +256,9 @@ static int hw_info_get(int info_id, const void **data,
        struct dev_context *devc;
 
        switch (info_id) {
+       case SR_DI_HWOPTS:
+               *data = hwopts;
+               break;
        case SR_DI_HWCAPS:
                *data = hwcaps;
                break;