This function of the of the CAA_Memory.library will return the low byte of the input word „wValue“.
wValue |
WORD |
Word (incl. high and low byte) |
MEM.LowByte |
BYTE |
Low byte of wValue |
Example:
wValue : WORD := 16#1234 ;
->
MEM.LowByte(wValue) = 16#34