drivers: ieee802154: cc13xx_cc26xx: Don't filter beacon for OpenThread
OpenThread network discovery was not working. The radio driver is filtering the beacon packets whereas this is required for OpenThread. Allow receiving beacon packets. Signed-off-by: Alexandre Bailon <abailon@baylibre.com>
This commit is contained in:
parent
b8f94cade5
commit
db496c7a76
1 changed files with 4 additions and 0 deletions
|
@ -738,7 +738,11 @@ static struct ieee802154_cc13xx_cc26xx_data ieee802154_cc13xx_cc26xx_data = {
|
||||||
.bStrictLenFilter = 1
|
.bStrictLenFilter = 1
|
||||||
},
|
},
|
||||||
.frameTypes = {
|
.frameTypes = {
|
||||||
|
#if defined(CONFIG_NET_L2_OPENTHREAD)
|
||||||
|
.bAcceptFt0Beacon = 1,
|
||||||
|
#else
|
||||||
.bAcceptFt0Beacon = 0,
|
.bAcceptFt0Beacon = 0,
|
||||||
|
#endif
|
||||||
.bAcceptFt1Data = 1,
|
.bAcceptFt1Data = 1,
|
||||||
.bAcceptFt2Ack = 0,
|
.bAcceptFt2Ack = 0,
|
||||||
.bAcceptFt3MacCmd = 1,
|
.bAcceptFt3MacCmd = 1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue