Skip to content

Commit 4516ff1

Browse files
committed
fixup! socket_zep: add option to disable auto ACK
1 parent 2b5004c commit 4516ff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpu/native/socket_zep/socket_zep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ static int _confirm_op(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx)
728728
static const ieee802154_radio_ops_t socket_zep_rf_ops = {
729729
.caps = IEEE802154_CAP_24_GHZ
730730
| IEEE802154_CAP_AUTO_CSMA
731-
| IS_ACTIVE(SOCKET_ZEP_AUTO_ACK) ? IEEE802154_CAP_AUTO_ACK : 0
731+
| (IS_ACTIVE(SOCKET_ZEP_AUTO_ACK) ? IEEE802154_CAP_AUTO_ACK : 0)
732732
| IEEE802154_CAP_IRQ_TX_DONE
733733
| IEEE802154_CAP_IRQ_TX_START
734734
| IEEE802154_CAP_IRQ_RX_START

0 commit comments

Comments
 (0)