1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

drivers/kw2xrd/Kconfig: fix kconfig model

Nightlies are currently failing as there is a difference between make
and kconfig.
This tries to match the kconfig with the makefile dep.
The only issue is the
```
ifneq (,$(filter netdev,$(USEMODULE)))
  USEMODULE += netdev_ieee802154_submac
endif
```

which may have the same effect as select
HAVE_IEEE802154_RADIO_HAL_INTERFACE.
This commit is contained in:
MrKevinWeiss 2022-08-22 10:40:56 +02:00
parent 777e148bc2
commit a4bc692148
No known key found for this signature in database
GPG Key ID: 4B69974722CBEEAE

View File

@ -16,14 +16,12 @@ menuconfig MODULE_KW2XRF
select MODULE_CORE_THREAD_FLAGS
select MODULE_IEEE802154
select MODULE_LUID
select MODULE_NETDEV
select MODULE_NETDEV_IEEE802154
select MODULE_NETDEV_LEGACY_API
select MODULE_PERIPH_GPIO
select MODULE_PERIPH_GPIO_IRQ
select MODULE_PERIPH_SPI
select MODULE_IOLIST
select HAVE_BHP_IRQ_HANDLER
select HAVE_IEEE802154_RADIO_HAL_INTERFACE
config MODULE_KW2XRF_TESTMODE
bool "Test mode"