1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

Merge pull request #5857 from smlng/pr/tests/driver_at86rf2xx/fix

tests/driver_at86rf2xx: corrects flag compare
This commit is contained in:
Martine Lenders 2016-09-21 18:01:36 +02:00 committed by GitHub
commit 03a82bc295

View File

@ -87,7 +87,7 @@ void recv(netdev2_t *dev)
printf("0, ");
}
printf("PAN comp.: ");
if (buffer[0] & IEEE802154_FCF_ACK_REQ) {
if (buffer[0] & IEEE802154_FCF_PAN_COMP) {
puts("1");
}
else {