const char *str;
/*
- * Note: All defined SR_* error macros from libsigrok.h should have
+ * Note: All defined SR_* error macros from libsigrok.h must have
* an entry in this function, as well as in sr_strerror_name().
*/
case SR_ERR_NA:
str = "not applicable";
break;
+ case SR_ERR_DEV_CLOSED:
+ str = "device closed but should be open";
+ break;
default:
str = "unknown error";
break;
const char *str;
/*
- * Note: All defined SR_* error macros from libsigrok.h should have
+ * Note: All defined SR_* error macros from libsigrok.h must have
* an entry in this function, as well as in sr_strerror().
*/
case SR_ERR_NA:
str = "SR_ERR_NA";
break;
+ case SR_ERR_DEV_CLOSED:
+ str = "SR_ERR_DEV_CLOSED";
+ break;
default:
str = "unknown error code";
break;
SR_ERR_SAMPLERATE = -5, /**< Incorrect samplerate. */
SR_ERR_NA = -6, /**< Not applicable. */
SR_ERR_DEV_CLOSED = -7, /**< Device is closed, but needs to be open. */
+
+ /*
+ * Note: When adding entries here, don't forget to also update the
+ * sr_strerror() and sr_strerror_name() functions in error.c.
+ */
};
#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */