File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,21 @@ Defines the expected data type for the register / map entry
35
35
| 32BIT_FLAGS | four bytes split into 32 bit flags. see 16BIT_FLAGS
36
36
| #bit | A unsigned number comprised of # of bits. for example, 3bit is a 3 bit positive number (0 to 7).
37
37
| ASCII | ascii text representation of data.
38
- | ASCII.# | for protocols with an undefined "registry" size, the length can be specified. ie: ASCII.7 will return a 7 character long string.
38
+ | ASCII.# | for protocols with an undefined "registry" size, the length can be specified. ie: ASCII.7 will return a 7 character long string.
39
+ | HEX | hex text representation of data.
40
+
41
+ ### data type byte order
42
+ in the case of protocols with inconsistent byte order implementations.
43
+
44
+ #### big endian
45
+ a suffix of "_ BE" can be added to a data type to ensure the entry is read with a big endian byte order
46
+ ie: ASCII_BE
47
+
48
+ #### little endian
49
+ a suffix of "_ LE" can be added to a data type to ensure the entry is read with a little endian byte order
50
+ ie: ASCII_LE
51
+
52
+
39
53
40
54
### register
41
55
Register defines the location or for other protocols the main command / id.
You can’t perform that action at this time.
0 commit comments