Diese Funktion der CAA_Memory.library gibt das untere Byte des Eingangsworts „wValue“ zurück.
wValue |
WORD |
Wort (einschließlich oberes und unteres Byte) |
MEM.LowByte |
BYTE |
Unteres Byte vom wValue |
Beispiel:
wValue : WORD := 16#1234 ;
->
MEM.LowByte(wValue) = 16#34