From: Uwe Hermann Date: Thu, 3 Jan 2013 01:15:27 +0000 (+0100) Subject: ols: Implement SR_DI_HWOPTS. X-Git-Tag: dsupstream~381 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=aeabd30820bd3b685fb0bac83d1dc4a7faa32287;p=libsigrok.git ols: Implement SR_DI_HWOPTS. --- diff --git a/hardware/openbench-logic-sniffer/api.c b/hardware/openbench-logic-sniffer/api.c index c3e1647d..c9ca8f0a 100644 --- a/hardware/openbench-logic-sniffer/api.c +++ b/hardware/openbench-logic-sniffer/api.c @@ -21,6 +21,12 @@ #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;