Commit 2ac0f3a3 authored by Alexander Aring's avatar Alexander Aring Committed by Marcel Holtmann

at86rf230: deliver with checksum

This patch indicates that the at86rf230 driver deliver with checksum
instead drop the crc before delivering.
Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 05f7de67
...@@ -819,7 +819,7 @@ at86rf230_rx_read_frame_complete(void *context) ...@@ -819,7 +819,7 @@ at86rf230_rx_read_frame_complete(void *context)
len = IEEE802154_MTU; len = IEEE802154_MTU;
} }
at86rf230_rx(lp, buf + 2, len - 2, buf[2 + len]); at86rf230_rx(lp, buf + 2, len, buf[2 + len]);
} }
static void static void
...@@ -1414,7 +1414,7 @@ at86rf230_detect_device(struct at86rf230_local *lp) ...@@ -1414,7 +1414,7 @@ at86rf230_detect_device(struct at86rf230_local *lp)
} }
lp->hw->extra_tx_headroom = 0; lp->hw->extra_tx_headroom = 0;
lp->hw->flags = IEEE802154_HW_OMIT_CKSUM | IEEE802154_HW_AACK | lp->hw->flags = IEEE802154_HW_TX_OMIT_CKSUM | IEEE802154_HW_AACK |
IEEE802154_HW_TXPOWER | IEEE802154_HW_ARET | IEEE802154_HW_TXPOWER | IEEE802154_HW_ARET |
IEEE802154_HW_AFILT | IEEE802154_HW_PROMISCUOUS; IEEE802154_HW_AFILT | IEEE802154_HW_PROMISCUOUS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment