Since multiple bits may be set in STS, mask STS with the bit you wish to examine before
you make any comparisons.
Example: The following equation selects frames with CRC errors.
showonly
(STS & STSCRC = STSCRC)
#
Example: The following equation selects all frames with errors.
showonly
STS <> 0
#
Frame Length, Len
The frame length includes the three byte header but does not include the CRC bytes.
Example: The following equation selects frames with only a header.
showonly
Len <= 3
#
Frame Destination, Dst
The first byte of the frame is the destination.
Comentarios a estos manuales