1# NXP KW41Z configuration options
2
3# Copyright (c) 2017 Linaro Limited
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig IEEE802154_KW41Z
7	bool "NXP KW41Z Driver support"
8	depends on NETWORKING
9	select REQUIRES_FULL_LIBC
10
11if IEEE802154_KW41Z
12
13config IEEE802154_KW41Z_DRV_NAME
14	string "NXP KW41Z Driver's name"
15	default "KW41Z"
16	help
17	  This option sets the driver name. Do not change it unless
18	  you know what you are doing.
19
20config IEEE802154_KW41Z_INIT_PRIO
21	int "KW41Z initialization priority"
22	default 80
23	help
24	  Set the initialization priority number. Do not change it unless
25	  you know what you are doing. It has to start before the net stack.
26
27config KW41_DBG_TRACE
28	bool "Enabled simplified debug tracing of events"
29	help
30	  The value depends on your debugging needs. This generates an encoded
31	  trace of events without going to debug logging to avoid timing impact
32	  on running code. The buffer is post analyzed via the debugger.
33endif
34