libsigrok.h: Fix enum entries order.
New enum items must be added at the bottom of the respective "category" within the enum in order to not change any numbers (i.e. break the ABI).
This commit is contained in:
parent
72a08bccff
commit
d5c5ea2a29
17
libsigrok.h
17
libsigrok.h
|
@ -628,14 +628,6 @@ enum {
|
|||
/** The device supports setting a pattern (pattern generator mode). */
|
||||
SR_CONF_PATTERN_MODE,
|
||||
|
||||
/** The devices supports using a external clock. */
|
||||
SR_CONF_EXTERNAL_CLOCK,
|
||||
|
||||
/** The device supports swapping channels. Typical this is between
|
||||
* buffered and unbuffered channels.
|
||||
*/
|
||||
SR_CONF_SWAP,
|
||||
|
||||
/** The device supports Run Length Encoding. */
|
||||
SR_CONF_RLE,
|
||||
|
||||
|
@ -693,6 +685,15 @@ enum {
|
|||
/** Logic low-high threshold range. */
|
||||
SR_CONF_VOLTAGE_THRESHOLD,
|
||||
|
||||
/** The device supports using a external clock. */
|
||||
SR_CONF_EXTERNAL_CLOCK,
|
||||
|
||||
/**
|
||||
* The device supports swapping channels. Typical this is between
|
||||
* buffered and unbuffered channels.
|
||||
*/
|
||||
SR_CONF_SWAP,
|
||||
|
||||
/*--- Special stuff -------------------------------------------------*/
|
||||
|
||||
/** Scan options supported by the driver. */
|
||||
|
|
Loading…
Reference in New Issue