Skip to content
Snippets Groups Projects
Commit 03a82bc2 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

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

tests/driver_at86rf2xx: corrects flag compare
parents 8234a002 671831d3
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment