Add check byte expression

Available Operator

NameOperaorSimple
+ - × ÷+ - * / 
brackets( ) 
and@& 
or@| 
xor@^ 
not@~ 
Continuous summationb1+b2+···+b14sum(1:14)
Continuous XORb1 xor b2 xor ··· xor b10xor(1:10)
Continuous logical ANDb1 and b2 and ··· and b14and(1:14)
CRC8/CRC16Know moreKnow more

Example

rules → how to add b2=b1b2=b1 b4=b2 + 0x1Fb4=b2+31 b15=b0 xor b1b15=b0@^b1 b2=not b0b2@~b0 Note1: Please convert the hexadecimal number to decimal Note2: Drag expression up/down to change sequence

Extended Usage

Visit mXparser WebSite