You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,18 +104,20 @@ The first char shows the byte order to be used for parsing of the field (if the
104
104
105
105
Supported data types and commands
106
106
==================================
107
-
-**bit[:(<numberOfbits>|'('expression')')]** - a bit field of fixed size (1..7 bits), by default 1
107
+
-**bit[:(number_of_bits|expression_in_parentheses)]** - a bit field of fixed size (1..7 bits), by default 1
108
108
-**byte** - a signed byte field (8 bits)
109
109
-**ubyte** - a unsigned byte field (8 bits)
110
110
-**bool** - a boolean field (1 byte)
111
111
-**short** - a signed short field (2 bytes)
112
112
-**ushort**- a unsigned short field (2 bytes)
113
113
-**int** - an integer field (4 bytes)
114
114
-**long** - a long field (8 bytes)
115
-
-**align[:(<numberOfbytes>|'('expression')')]** - align the counter for number of bytes, by default 1. NB: It works relative to the current read byte counter!
116
-
-**skip[:(<numberOfbytes>|'('expression')')]** - skip number of bytes, by default 1
117
-
-**var[:(<numericvalue>|'('expression')']** - a var field which should be read through an external processor defined by the user
118
-
-**reset$$** - reset the input stream read byte counter, it is very useful for relative alignment operations
115
+
-**align[:(number_of_bytes|expression_in_parentheses)]** - align the counter for number of bytes, by default 1. NB: It works relative to the current read byte counter!
116
+
-**skip[:(number_of_bytes|expression_in_parentheses)]** - skip number of bytes, by default 1
117
+
-**var[:(numeric_value|expression_in_parentheses)]** - a var field which should be read through an external processor defined by the user
118
+
-**reset$$** - reset the input stream read byte counter, it is very useful for relative alignment operations
119
+
120
+
__expression_in_parentheses - means (expression)__
0 commit comments