added HCD:1, HCD:2, HCD:3, corrected max values for BCD+HCDdiff

This commit is contained in:
john30
2016-01-30 17:58:48 +01:00
parent d6aab00335
commit 5e4d9f3d40
3 changed files with 41 additions and 7 deletions
+2 -2
View File
@@ -115,8 +115,8 @@ typedef struct dataType_s {
const BaseType type; //!< base data type
const unsigned short flags; //!< flags (like #BCD)
const unsigned int replacement; //!< replacement value (fill-up value for #bt_str / #bt_hexstr, no replacement if equal to #minValue for #bt_num)
const unsigned int minValue; //!< minimum binary value (ignored for @a StringDataField)
const unsigned int maxValue; //!< maximum binary value (ignored for @a StringDataField)
const unsigned int minValue; //!< minimum raw value (ignored for @a StringDataField)
const unsigned int maxValue; //!< maximum raw value (ignored for @a StringDataField)
const short divisorOrFirstBit; //!< #bt_num: divisor (negative for reciprocal) or offset to first bit (if (#bitCount%8)!=0)
} dataType_t;