Add two new 'auto' flags.

Add flags for indicating that the meter has selected the measured
quantitiy and/or the used measurement model automatically. These
are similar to the existing auto-range flag.
This commit is contained in:
Janne Huttunen 2014-10-11 15:47:30 +03:00 committed by Uwe Hermann
parent 23601f2c7e
commit ae27f28165
1 changed files with 4 additions and 0 deletions

View File

@ -340,6 +340,10 @@ enum sr_mqflag {
SR_MQFLAG_AVG = 0x40000,
/** Reference value shown. */
SR_MQFLAG_REFERENCE = 0x80000,
/** Device selects the measured quantity automatically. */
SR_MQFLAG_AUTOMQ = 0x100000,
/** Device selects the measurement model automatically. */
SR_MQFLAG_AUTOMODEL = 0x200000,
};
enum sr_trigger_matches {