1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/cc2538/radio/Kconfig: indicate that radio HAL is implemented

This commit is contained in:
Leandro Lanzieri 2022-03-09 09:14:36 +01:00
parent 4ac0025c84
commit 16ffe80525
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -6,9 +6,12 @@
#
menuconfig MODULE_CC2538_RF
bool "CC2538 IEEE 802.15.4 radio"
bool
prompt "CC2538 IEEE 802.15.4 radio" if !(MODULE_NETDEV_DEFAULT && HAVE_CC2538_RF)
default (MODULE_NETDEV_DEFAULT && HAVE_CC2538_RF)
depends on TEST_KCONFIG
depends on CPU_FAM_CC2538
select HAVE_IEE802154_RADIO_HAL_INTERFACE
if MODULE_CC2538_RF
@ -25,6 +28,5 @@ endif # MODULE_CC2538_RF
config HAVE_CC2538_RF
bool
select MODULE_CC2538_RF if MODULE_NETDEV_DEFAULT
help
Indicates that a cc2538 radio is present.