ols: Implement SR_DI_HWOPTS.

This commit is contained in:
Uwe Hermann 2013-01-03 02:15:27 +01:00
parent 986fde755d
commit aeabd30820
1 changed files with 9 additions and 0 deletions

View File

@ -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;