1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

drivers/at86rf2xx: use byteorder_ltohs()

This commit is contained in:
Benjamin Valentin 2020-12-09 14:23:37 +01:00
parent 7358ae9c2e
commit c5ca2c2784

View File

@ -60,10 +60,10 @@ void recv(netdev_t *dev)
break;
}
printf("Dest. PAN: 0x%04x, Dest. addr.: ",
byteorder_ntohs(byteorder_ltobs(dst_pan)));
byteorder_ltohs(dst_pan));
print_addr(dst, dst_len);
printf("\nSrc. PAN: 0x%04x, Src. addr.: ",
byteorder_ntohs(byteorder_ltobs(src_pan)));
byteorder_ltohs(src_pan));
print_addr(src, src_len);
printf("\nSecurity: ");
if (buffer[0] & IEEE802154_FCF_SECURITY_EN) {