ec0e737b0c
This change adds IEEE 802.15.4g (Sub GHz) support for the cc1352r. The 2.4 GHz radio and the Sub GHz radio are capable of operating simultaneously. Fixes #26315 Signed-off-by: Christopher Friedt <chrisfriedt@gmail.com>
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# TI CC13xx / CC26xx IEEE 802.15.4 configuration options
|
|
|
|
# Copyright (c) 2019 Brett Witherspoon
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig IEEE802154_CC13XX_CC26XX
|
|
bool "TI CC13xx / CC26xx IEEE 802.15.4 driver support"
|
|
|
|
if IEEE802154_CC13XX_CC26XX
|
|
|
|
config IEEE802154_CC13XX_CC26XX_DRV_NAME
|
|
string "TI CC13xx / CC26xx IEEE 802.15.4 driver's name"
|
|
default "IEEE802154_0"
|
|
help
|
|
This option sets the driver name.
|
|
|
|
config IEEE802154_CC13XX_CC26XX_INIT_PRIO
|
|
int "TI CC13xx / CC26xx IEEE 802.15.4 initialization priority"
|
|
default 80
|
|
help
|
|
Set the initialization priority number.
|
|
|
|
endif # IEEE802154_CC13XX_CC26XX
|
|
|
|
menuconfig IEEE802154_CC13XX_CC26XX_SUB_GHZ
|
|
bool "TI CC13xx / CC26xx IEEE 802.15.4g driver support"
|
|
select NET_L2_IEEE802154_SUB_GHZ
|
|
|
|
if IEEE802154_CC13XX_CC26XX_SUB_GHZ
|
|
|
|
config IEEE802154_CC13XX_CC26XX_SUB_GHZ_DRV_NAME
|
|
string "TI CC13xx / CC26xx IEEE 802.15.4g driver's name"
|
|
default "IEEE802154_1"
|
|
help
|
|
This option sets the driver name.
|
|
|
|
config IEEE802154_CC13XX_CC26XX_SUB_GHZ_NUM_RX_BUF
|
|
int "TI CC13xx / CC26xx IEEE 802.15.4g receive buffer count"
|
|
default 2
|
|
help
|
|
This option allows the user to configure the number of
|
|
receive buffers.
|
|
|
|
config IEEE802154_CC13XX_CC26XX_SUB_GHZ_CS_THRESHOLD
|
|
int "TI CC13xx / CC26xx IEEE 802.15.4g Carrier Sense Threshold in dBm"
|
|
default -70
|
|
help
|
|
This option sets RSSI threshold for carrier sense in the CSMA/CA
|
|
algorithm.
|
|
|
|
config IEEE802154_CC13XX_CC26XX_SUB_GHZ_INIT_PRIO
|
|
int "TI CC13xx / CC26xx IEEE 802.15.4g initialization priority"
|
|
default 80
|
|
help
|
|
Set the initialization priority number.
|
|
|
|
endif # IEEE802154_CC13XX_CC26XX_SUB_GHZ
|