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

drivers/netdev_ieee802154_submac: model Kconfig

This commit is contained in:
Leandro Lanzieri 2022-03-09 09:13:42 +01:00
parent ed22d624e4
commit eab508b4b1
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
2 changed files with 19 additions and 0 deletions

View File

@ -22,6 +22,7 @@ rsource "ethos/Kconfig"
rsource "mcp2515/Kconfig"
rsource "mrf24j40/Kconfig"
rsource "ncv7356/Kconfig"
rsource "netdev_ieee802154_submac/Kconfig"
rsource "pn532/Kconfig"
rsource "rn2xx3/Kconfig"
rsource "$(RIOTCPU)/sam0_common/sam0_eth/Kconfig"

View File

@ -0,0 +1,18 @@
# Copyright (c) 2022 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config MODULE_NETDEV_IEEE802154_SUBMAC
bool
depends on TEST_KCONFIG
depends on MODULE_NETDEV
default y if HAVE_IEE802154_RADIO_HAL_INTERFACE
select MODULE_NETDEV_IEEE802154
select MODULE_IEEE802154
select MODULE_IEEE802154_SUBMAC
help
This module implements the netdev API on top of the IEEE 802.15.4 radio
HAL.