mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 02:45:42 +00:00
802.15.4 is the networking hardware available in KW41Z SoC (and supported by Zephyr). So, if networking in enabled, automatically select the corresponding driver. This is similar to how frdm_k64f automatically selects Ethernet driver, 96b_carbon selects BLE/IPSP drivers, etc. (But we apply it on SoC level to reuse across the boards.) Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
33 lines
714 B
Plaintext
33 lines
714 B
Plaintext
# Kconfig.kw41z - NXP KW41Z configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2017 Linaro Limited
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig IEEE802154_KW41Z
|
|
bool "NXP KW41Z Driver support"
|
|
depends on NETWORKING
|
|
select NET_L2_IEEE802154
|
|
select NEWLIB_LIBC
|
|
default n
|
|
|
|
if IEEE802154_KW41Z
|
|
|
|
config IEEE802154_KW41Z_DRV_NAME
|
|
string "NXP KW41Z Driver's name"
|
|
default "KW41Z"
|
|
help
|
|
This option sets the driver name. Do not change it unless
|
|
you know what you are doing.
|
|
|
|
config IEEE802154_KW41Z_INIT_PRIO
|
|
int "KW41Z initialization priority"
|
|
default 80
|
|
help
|
|
Set the initialization priority number. Do not change it unless
|
|
you know what you are doing. It has to start before the net stack.
|
|
|
|
endif
|