X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhwdriver.c;h=81a86a7998a5de184f5411a37b42d7c8b8793846;hb=26918dced08eacbd851c63f9b4459d4c764b540f;hp=0aa7eb8c0f0517bf44dee0c30c964bdc679fcfe9;hpb=cffdc3e63b132795bfcaab91864c1c6b124e87fa;p=libsigrok.git diff --git a/src/hwdriver.c b/src/hwdriver.c index 0aa7eb8c..81a86a79 100644 --- a/src/hwdriver.c +++ b/src/hwdriver.c @@ -171,6 +171,10 @@ static struct sr_key_info sr_key_info_config[] = { "Equivalent circuit model", NULL}, {SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE, SR_T_BOOL, "otp_active", "Over-temperature protection active", NULL}, + {SR_CONF_UNDER_VOLTAGE_CONDITION, SR_T_BOOL, "uvc", + "Under-voltage condition", NULL}, + {SR_CONF_UNDER_VOLTAGE_CONDITION_ACTIVE, SR_T_BOOL, "uvc_active", + "Under-voltage condition active", NULL}, /* Special stuff */ {SR_CONF_SESSIONFILE, SR_T_STRING, "sessionfile", @@ -391,7 +395,7 @@ SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver) /** * Enumerate scan options supported by this driver. * - * Before calling sr_driver_scan_options(), the user must have previously + * Before calling sr_driver_scan_options_list(), the user must have previously * initialized the driver by calling sr_driver_init(). * * @param driver The driver to enumerate options for. This must be a pointer @@ -404,7 +408,7 @@ SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver) * * @since 0.4.0 */ -SR_API GArray *sr_driver_scan_options(const struct sr_dev_driver *driver) +SR_API GArray *sr_driver_scan_options_list(const struct sr_dev_driver *driver) { GVariant *gvar; const uint32_t *opts;