|
| 1 | +# Copyright (c) 2025 Nordic Semiconductor ASA |
| 2 | +# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause |
| 3 | + |
| 4 | +if !NET_L2_OPENTHREAD |
| 5 | + |
| 6 | +config NRF5_SELECTIVE_TXCHANNEL |
| 7 | + bool "Support for selective TX channel setting" |
| 8 | + help |
| 9 | + Enable support for selectively setting TX channel for every timed transmission request. |
| 10 | + |
| 11 | +config NRF5_CARRIER_FUNCTIONS |
| 12 | + bool "Support for carrier functions" |
| 13 | + default y if OPENTHREAD_DIAG |
| 14 | + help |
| 15 | + Enable support for functions such as modulated carrier and continuous carrier. |
| 16 | + |
| 17 | +config NRF5_VENDOR_OUI_ENABLE |
| 18 | + bool "Support setting Vendor Organizationally Unique Identifier" |
| 19 | + help |
| 20 | + This option enables setting custom vendor |
| 21 | + OUI using NRF5_VENDOR_OUI . After enabling, |
| 22 | + user is obliged to set NRF5_VENDOR_OUI value, |
| 23 | + as this option has no default value. |
| 24 | + |
| 25 | +if NRF5_VENDOR_OUI_ENABLE |
| 26 | + |
| 27 | +config NRF5_VENDOR_OUI |
| 28 | + int "Vendor Organizationally Unique Identifier" |
| 29 | + help |
| 30 | + Custom vendor OUI, which makes 24 most-significant |
| 31 | + bits of MAC address |
| 32 | + |
| 33 | +endif # NRF5_VENDOR_OUI_ENABLE |
| 34 | + |
| 35 | +config NRF5_UICR_EUI64_ENABLE |
| 36 | + bool "Support usage of EUI64 value stored in UICR registers" |
| 37 | + depends on !NRF5_VENDOR_OUI_ENABLE |
| 38 | + depends on SOC_SERIES_NRF52X || SOC_SERIES_NRF53X || SOC_SERIES_NRF54LX |
| 39 | + help |
| 40 | + This option enables setting custom vendor EUI64 value |
| 41 | + stored in User information configuration registers (UICR). |
| 42 | + Notice that this disables the default setting of EUI64 |
| 43 | + value from Factory information configuration registers |
| 44 | + (FICR). |
| 45 | + |
| 46 | +if NRF5_UICR_EUI64_ENABLE |
| 47 | + |
| 48 | +config NRF5_UICR_EUI64_REG |
| 49 | + int "UICR base register for the EUI64 value" |
| 50 | + range 0 30 if SOC_SERIES_NRF52X |
| 51 | + range 0 190 if SOC_SERIES_NRF53X |
| 52 | + range 0 318 if SOC_SERIES_NRF54LX |
| 53 | + default 0 |
| 54 | + help |
| 55 | + Base of the two consecutive registers from the UICR customer |
| 56 | + section in which custom EUI64 is stored. |
| 57 | + |
| 58 | +endif # NRF5_UICR_EUI64_ENABLE |
| 59 | + |
| 60 | +config NRF5_LOG_RX_FAILURES |
| 61 | + bool "Frame reception failures logging" |
| 62 | + help |
| 63 | + There are few cases where the frame reception failure can happen because of |
| 64 | + internal cause. These cases are reported forward by general code error. |
| 65 | + |
| 66 | + This options enables logging the reason of frame reception failure. |
| 67 | + It can be helpful for the network traffic analyze but it generates also |
| 68 | + a lot of log records in a stress environment. |
| 69 | + |
| 70 | +endif # !NET_L2_OPENTHREAD |
0 commit comments