analog: support AC+DC unit modifier

This commit is contained in:
Bert Vermeulen 2012-10-15 11:32:36 +02:00
parent 17ff11240e
commit 2b98e0aaab
1 changed files with 3 additions and 1 deletions

View File

@ -132,7 +132,9 @@ static void fancyprint(int unit, int mqflags, float value, GString *out)
si_printf(value, out, "S");
break;
}
if (mqflags & SR_MQFLAG_AC)
if ((mqflags & (SR_MQFLAG_AC | SR_MQFLAG_DC)) == (SR_MQFLAG_AC | SR_MQFLAG_DC))
g_string_append_printf(out, " AC+DC");
else if (mqflags & SR_MQFLAG_AC)
g_string_append_printf(out, " AC");
else if (mqflags & SR_MQFLAG_DC)
g_string_append_printf(out, " DC");