mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 14:15:21 +00:00
Fix mcxw_cca function. Remove not used / not implemented caps. Select counter as dependency. Signed-off-by: Andrei Menzopol <andrei.menzopol@nxp.com>
29 lines
564 B
Plaintext
29 lines
564 B
Plaintext
# NXP MCXW 802.15.4 configuration options
|
|
|
|
# Copyright 2025 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig IEEE802154_MCXW
|
|
bool "NXP MCXW series IEEE 802.15.4 Driver"
|
|
default y
|
|
depends on DT_HAS_NXP_MCXW_IEEE802154_ENABLED
|
|
select COUNTER
|
|
|
|
if IEEE802154_MCXW
|
|
|
|
config IEEE802154_MCXW_INIT_PRIO
|
|
int "Initial priority for the IEEE802154 driver"
|
|
default 80
|
|
|
|
config IEEE802154_MCXW_RX_STACK_SIZE
|
|
int "Driver's internal RX thread stack size"
|
|
default 800
|
|
|
|
|
|
config IEEE802154_MCXW_CSL_ACCURACY
|
|
int "Csl accuracy for delayed operations"
|
|
default 100
|
|
|
|
|
|
endif
|