1# NXP MCXW 802.15.4 configuration options
2
3# Copyright 2025 NXP
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig IEEE802154_MCXW
7	bool "NXP MCXW series IEEE 802.15.4 Driver"
8	default y
9	depends on DT_HAS_NXP_MCXW_IEEE802154_ENABLED
10	depends on COUNTER
11
12if IEEE802154_MCXW
13
14config IEEE802154_MCXW_INIT_PRIO
15	int "Initial priority for the IEEE802154 driver"
16	default 80
17
18config IEEE802154_MCXW_RX_STACK_SIZE
19	int "Driver's internal RX thread stack size"
20	default 800
21
22
23config IEEE802154_MCXW_CSL_ACCURACY
24	int "Csl accuracy for delayed operations"
25	default 100
26
27
28endif
29