2015-09-11 21:13:26 +08:00
|
|
|
# Kconfig - IEEE 802.15.4 driver configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2017-08-16 23:05:14 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-09-11 21:13:26 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# IEEE 802.15.4 options
|
|
|
|
#
|
2016-06-15 16:46:10 +08:00
|
|
|
menu "IEEE 802.15.4 drivers options"
|
2015-09-11 21:13:26 +08:00
|
|
|
|
2017-01-10 21:24:01 +08:00
|
|
|
config SYS_LOG_IEEE802154_DRIVER_LEVEL
|
|
|
|
int
|
|
|
|
prompt "IEEE802154 driver log level"
|
2017-08-04 20:34:58 +08:00
|
|
|
depends on SYS_LOG
|
2017-01-10 21:24:01 +08:00
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Sets log level for 802.15.4 drivers.
|
|
|
|
|
|
|
|
Levels are:
|
|
|
|
|
|
|
|
- 0 OFF, do not write
|
|
|
|
|
|
|
|
- 1 ERROR, only write SYS_LOG_ERR
|
|
|
|
|
2017-04-22 01:29:51 +08:00
|
|
|
- 2 WARNING, write SYS_LOG_WRN in addition to previous level
|
2017-01-10 21:24:01 +08:00
|
|
|
|
2017-04-22 01:29:51 +08:00
|
|
|
- 3 INFO, write SYS_LOG_INF in addition to previous levels
|
2017-01-10 21:24:01 +08:00
|
|
|
|
2017-04-22 01:29:51 +08:00
|
|
|
- 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
|
2017-01-10 21:24:01 +08:00
|
|
|
|
2017-02-03 19:59:59 +08:00
|
|
|
source "drivers/ieee802154/Kconfig.cc2520"
|
2015-09-11 21:13:26 +08:00
|
|
|
|
2017-04-24 23:23:47 +08:00
|
|
|
source "drivers/ieee802154/Kconfig.kw41z"
|
|
|
|
|
2017-02-03 19:59:59 +08:00
|
|
|
source "drivers/ieee802154/Kconfig.mcr20a"
|
2016-01-18 21:07:39 +08:00
|
|
|
|
2017-02-06 19:42:34 +08:00
|
|
|
source "drivers/ieee802154/Kconfig.nrf5"
|
|
|
|
|
2017-02-06 18:49:16 +08:00
|
|
|
menuconfig IEEE802154_UPIPE
|
2016-08-17 22:48:36 +08:00
|
|
|
bool "UART PIPE fake radio driver support for QEMU"
|
|
|
|
depends on BOARD_QEMU_X86
|
2016-11-12 06:13:24 +08:00
|
|
|
select NETWORKING
|
2016-08-17 22:48:36 +08:00
|
|
|
select UART_PIPE
|
|
|
|
default n
|
|
|
|
|
2017-02-06 18:49:16 +08:00
|
|
|
config IEEE802154_UPIPE_DRV_NAME
|
2016-08-17 22:48:36 +08:00
|
|
|
string "UART PIPE Driver name"
|
2017-02-06 18:49:16 +08:00
|
|
|
default "IEEE802154_UPIPE"
|
|
|
|
depends on IEEE802154_UPIPE
|
2016-08-17 22:48:36 +08:00
|
|
|
|
2015-09-11 21:13:26 +08:00
|
|
|
endmenu
|