Skip to content

Commit cfe48cb

Browse files
committed
Merge branch 'main' of https://github.com/nrfconnect/sdk-nrf into WEZEN-2900-wzn-add-support-for-systemoff-twister-tests
2 parents c0a11f9 + c7e8142 commit cfe48cb

File tree

1,374 files changed

+26714
-14360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,374 files changed

+26714
-14360
lines changed

.github/test-spec.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
- "include/modem/pdn.h"
127127
- "include/modem/at_params.h"
128128
- "include/modem/modem_key_mgmt.h"
129+
- "subsys/dfu/dfu_target/**/*"
129130

130131
"CI-dfu-test":
131132
- "include/bl*"
@@ -381,6 +382,8 @@
381382
- "drivers/wifi/**/*"
382383
- "modules/hostap/**/*"
383384
- "modules/lib/hostap/**/*"
385+
- "subsys/net/lib/nrf70_fw_ext/**/*"
386+
- "subsys/net/lib/hostap_crypto/**/*"
384387
- "subsys/mpsl/**/*"
385388
- "subsys/ieee802154/**/*"
386389
- "subsys/bootloader/**/*"
@@ -525,6 +528,8 @@
525528
- "samples/wifi/**/*"
526529
- "modules/hostap/**/*"
527530
- "modules/lib/hostap/**/*"
531+
- "subsys/net/lib/nrf70_fw_ext/**/*"
532+
- "subsys/net/lib/hostap_crypto/**/*"
528533

529534
"CI-cloud-test":
530535
- "include/caf/**/*"
@@ -591,8 +596,8 @@
591596

592597
"CI-test-low-level":
593598
- "applications/hpf/**/*"
594-
- "boards/nordic/nrf54lm20apdk/**/*"
595-
- "boards/nordic/nrf54lv10apdk/**/*"
599+
- "boards/nordic/nrf54lm20pdk/**/*"
600+
- "boards/nordic/nrf54lv10dk/**/*"
596601
- "drivers/gpio/**/*"
597602
- "dts/bindings/gpio/**/*"
598603
- "include/drivers/gpio/**/*"

.github/workflows/compliance.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
git log --pretty=oneline | head -n 10
6767
# For now we run KconfigBasic, but we should transition to Kconfig
6868
$ZEPHYR_BASE/scripts/ci/check_compliance.py --annotate -e Kconfig \
69-
-e KconfigBasicNoModules -e ClangFormat -e Ruff -c origin/${BASE_REF}..
69+
-e KconfigBasicNoModules -e ClangFormat -e Ruff \
70+
-e SysbuildKconfig -e SysbuildKconfigBasic -e SysbuildKconfigBasicNoModules \
71+
-c origin/${BASE_REF}..
7072
7173
- name: upload-results
7274
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4

.github/workflows/docbuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
- name: Build documentation
6767
working-directory: ncs/nrf
6868
run: |
69-
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
70-
BUILD_CONF="-DNO_DTS_BINDINGS=ON"
69+
if [[ "${{ github.event_name }}" == "push" ]]; then
70+
BUILD_CONF="-DDTS_BINDINGS=ON -DHW_FEATURES=ON"
7171
fi
7272
7373
cmake -GNinja -Bdoc/_build -Sdoc -DSPHINXOPTS_EXTRA="-q" ${BUILD_CONF}
@@ -135,7 +135,7 @@ jobs:
135135
136136
# Patch links from Sphinx to Doxygen APIs
137137
find doc/_build/html/$docset -type f -name "*.html" -exec \
138-
sed -ri "/href=\"([^\"]+)\/doxygen\/html\/([^\"]+)\"/{s//href=\"\1\/..\/..\/..\/$docset-apis-$VERSION\/page\/\2\"/g; :a s/__/_/g;ta; }" {} \;
138+
sed -ri "/href=\"([^\"]+)\/([a-z]+)\/doxygen\/html\/([^\"]+)\"/{s//href=\"..\/..\/\1\/\2-apis-$VERSION\/page\/\3\"/g; :a s/__/_/g;ta; }" {} \;
139139
140140
pushd "$OUTDIR"
141141
ARCHIVE="$docset-apis-$VERSION.zip"

.github/workflows/docker.yml

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
push:
55
tags:
66
- 'v*'
7+
branches: # Trigger on push to main and release branches
8+
- main
9+
- 'v*-branch'
10+
11+
env:
12+
IMAGE_NAME: ghcr.io/${{ github.repository }}-toolchain
713

814
jobs:
915
build:
@@ -23,9 +29,31 @@ jobs:
2329
username: NordicBuilder
2430
password: ${{ secrets.NCS_GITHUB_PKG_WRITE_TOKEN }}
2531

26-
- name: Build and push Docker image
32+
- name: Check if Docker image exists
33+
id: check-image
2734
run: |
28-
TOOLCHAIN_ID=$(../print_toolchain_checksum.sh)
29-
docker build -t ghcr.io/${{ github.repository }}-toolchain:${{ github.ref_name }} --build-arg VERSION=$TOOLCHAIN_ID .
30-
docker push ghcr.io/${{ github.repository }}-toolchain:${{ github.ref_name }}
35+
TOOLCHAIN_ID=$(./scripts/print_toolchain_checksum.sh)
36+
echo "TOOLCHAIN_ID=$TOOLCHAIN_ID" >> $GITHUB_OUTPUT
37+
if docker manifest inspect ${IMAGE_NAME}:$TOOLCHAIN_ID > /dev/null 2>&1; then
38+
echo "exists=true" >> $GITHUB_OUTPUT
39+
else
40+
echo "exists=false" >> $GITHUB_OUTPUT
41+
fi
42+
43+
- name: Build and push Docker image
44+
if: steps.check-image.outputs.exists == 'false'
3145
working-directory: scripts/docker
46+
run: |
47+
docker build -t ${IMAGE_NAME}:${{steps.check-image.outputs.TOOLCHAIN_ID}} --build-arg VERSION=${{steps.check-image.outputs.TOOLCHAIN_ID}} .
48+
docker push ${IMAGE_NAME}:${{steps.check-image.outputs.TOOLCHAIN_ID}}
49+
if [[ ${{ github.ref_name }} == "main" ]]; then
50+
docker tag ${IMAGE_NAME}:${{steps.check-image.outputs.TOOLCHAIN_ID}} ${IMAGE_NAME}:latest
51+
docker push ${IMAGE_NAME}:latest
52+
fi
53+
54+
- name: Tag and push Docker image for tags
55+
if: github.event_name == 'push' && github.ref_type == 'tag'
56+
run: |
57+
docker pull ${IMAGE_NAME}:${{steps.check-image.outputs.TOOLCHAIN_ID}}
58+
docker tag ${IMAGE_NAME}:${{steps.check-image.outputs.TOOLCHAIN_ID}} ${IMAGE_NAME}:${{ github.ref_name }}
59+
docker push ${IMAGE_NAME}:${{ github.ref_name }}

.github/workflows/scripts-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
- name: Install packages
2626
run: python -m pip install -r scripts/requirements-test.txt
2727
- name: Run tests
28-
run: python -m pytest scripts
28+
run: python -m pytest scripts --ignore=scripts/ci/test_plan.py

CODEOWNERS

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
/CMakeLists.txt @nrfconnect/ncs-co-build-system
1515
/CODEOWNERS @nrfconnect/ncs-code-owners
1616
/Jenkinsfile @nrfconnect/ncs-ci
17-
/ncs_version.h.in @nrfconnect/ncs-code-owners
1817
/LICENSE @carlescufi
1918
/README.rst @carlescufi @nrfconnect/ncs-doc-leads
2019
/VERSION @nrfconnect/ncs-code-owners
@@ -34,7 +33,7 @@
3433
/applications/matter_weather_station/ @nrfconnect/ncs-matter
3534
/applications/nrf5340_audio/ @nrfconnect/ncs-audio
3635
/applications/nrf_desktop/ @nrfconnect/ncs-si-bluebagel
37-
/applications/hpf/ @nrfconnect/ncs-ll-ursus
36+
/applications/hpf/ @nrfconnect/ncs-ll-ursus @ncs-lowlevel-doc
3837
/applications/serial_lte_modem/ @nrfconnect/ncs-co-networking @nrfconnect/ncs-lr-slm
3938
/applications/serial_lte_modem/src/lwm2m_carrier/ @nrfconnect/ncs-carrier
4039
/applications/connectivity_bridge/*.rst @nrfconnect/ncs-cia-doc
@@ -44,15 +43,15 @@
4443
/applications/matter_weather_station/*.rst @nrfconnect/ncs-matter-doc
4544
/applications/nrf5340_audio/**/*.rst @nrfconnect/ncs-audio-doc
4645
/applications/nrf_desktop/**/*.rst @nrfconnect/ncs-si-bluebagel-doc
47-
/applications/hpf/**/*.rst @annwoj
46+
/applications/hpf/**/*.rst @ncs-lowlevel-doc
4847
/applications/serial_lte_modem/**/*.rst @nrfconnect/ncs-iot-oulu-tampere-doc
4948
/applications/serial_lte_modem/doc/CARRIER_AT_commands.rst @nrfconnect/ncs-carrier-doc
5049

5150
# Boards
5251
/boards/nordic/nrf7120pdk/ @nrfconnect/ncs-co-boards @rob-robinson-14 @Hi-Im-David
5352
/boards/nordic/nrf54l*/ @nrfconnect/ncs-co-boards @kl-cruz
5453
/boards/nordic/nrf52* @nrfconnect/ncs-co-boards @nrfconnect/ncs-si-bluebagel
55-
/boards/nordic/thingy91* @nrfconnect/ncs-co-boards @nrfconnect/ncs-cia
54+
/boards/nordic/thingy91*/ @nrfconnect/ncs-co-boards @nrfconnect/ncs-cia
5655
/boards/shields/coverage_support/ @nrfconnect/ncs-low-level-test
5756
/boards/shields/nrf2220ek/ @nrfconnect/ncs-radio-sw
5857
/boards/shields/nrf2240ek/ @nrfconnect/ncs-radio-sw
@@ -101,7 +100,7 @@
101100
/doc/nrf/drivers/suit_flash_ipuc.rst @nrfconnect/ncs-charon-doc
102101
/doc/nrf/drivers/images/flash_ipuc/* @nrfconnect/ncs-charon-doc
103102
/doc/nrf/drivers/hw_cc3xx.rst @nrfconnect/ncs-aegir-doc
104-
/doc/nrf/drivers/mspi_sqspi.rst @annwoj
103+
/doc/nrf/drivers/mspi_sqspi.rst @ncs-lowlevel-doc
105104
/doc/nrf/drivers/paw3212.rst @nrfconnect/ncs-si-bluebagel-doc
106105
/doc/nrf/drivers/pmw3360.rst @nrfconnect/ncs-si-bluebagel-doc
107106
/doc/nrf/drivers/sensor_sim.rst @nrfconnect/ncs-cia-doc
@@ -187,7 +186,7 @@
187186
/doc/nrf/libraries/nrf_rpc/index.rst @nrfconnect/ncs-si-muffin-doc
188187
/doc/nrf/libraries/nrf_rpc/nrf_rpc_ipc.rst @nrfconnect/ncs-si-muffin-doc
189188
/doc/nrf/libraries/nrf_rpc/nrf_rpc_uart.rst @nrfconnect/ncs-terahertz-doc
190-
/doc/nrf/libraries/nrf_rpc/nrf_rpc_dev_info.rst @nrfconnect/ncs-terahertz-doc
189+
/doc/nrf/libraries/nrf_rpc/nrf_rpc_utils.rst @nrfconnect/ncs-terahertz-doc
191190

192191
/doc/nrf/libraries/others/adp536x.rst @nrfconnect/ncs-cia-doc
193192
/doc/nrf/libraries/others/app_event_manager.rst @nrfconnect/ncs-si-muffin-doc @nrfconnect/ncs-si-bluebagel-doc
@@ -543,7 +542,7 @@
543542
/samples/openthread/ @nrfconnect/ncs-co-networking @nrfconnect/ncs-thread
544543
/samples/peripheral/802154_phy_test/ @nrfconnect/ncs-radio-sw
545544
/samples/peripheral/802154_sniffer/ @e-rk
546-
/samples/peripheral/lpuart/ @nordic-krch
545+
/samples/peripheral/lpuart/ @nordic-krch @nrfconnect/ncs-low-level-test
547546
/samples/peripheral/radio_test/ @nrfconnect/ncs-si-muffin
548547
/samples/pmic/native/ @nordic-auko
549548
/samples/sensor/bh1749/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-cia
@@ -696,9 +695,11 @@
696695

697696
# Scripts
698697
/scripts/docker/ @nrfconnect/ncs-ci
698+
/scripts/ci/test_plan.py @nordic-piks @PerMac @katgiadla @nrfconnect/ncs-test-leads
699699
/scripts/ci/tags.yaml @nordic-piks @PerMac @katgiadla @nrfconnect/ncs-test-leads
700700
/scripts/ci/tags_sdk_zephyr.yaml @nordic-piks @PerMac @katgiadla @nrfconnect/ncs-test-leads
701701
/scripts/ci/twister_ignore.txt @nordic-piks @PerMac @katgiadla @nrfconnect/ncs-test-leads
702+
/scripts/ci/twister_ignore_sdk_zephyr.txt @nordic-piks @PerMac @katgiadla @nrfconnect/ncs-test-leads
702703
/scripts/quarantine*.yaml @nrfconnect/ncs-test-leads
703704
/scripts/hid_configurator/ @nrfconnect/ncs-si-bluebagel
704705
/scripts/nrf_profiler/ @nrfconnect/ncs-si-bluebagel
@@ -790,8 +791,8 @@
790791
/subsys/event_manager_proxy/ @nrfconnect/ncs-si-muffin
791792
/subsys/fw_info/ @nrfconnect/ncs-pluto
792793
/subsys/gazell/ @leewkb4567
793-
/subsys/ieee802154/ @nrfconnect/ncs-co-networking @nrfconnect/ncs-radio-sw
794794
/subsys/logging/ @nrfconnect/ncs-protocols-serialization
795+
/subsys/mcuboot/ @nrfconnect/ncs-charon
795796
/subsys/mgmt/ @nrfconnect/ncs-pluto
796797
/subsys/mgmt/suitfu/ @nrfconnect/ncs-charon
797798
/subsys/mpsl/ @nrfconnect/ncs-dragoon
@@ -824,6 +825,7 @@
824825
/subsys/partition_manager/ @nordicjm @tejlmand
825826
/subsys/pcd/ @nrfconnect/ncs-pluto
826827
/subsys/sdfw_services/ @nrfconnect/ncs-aurora
828+
/subsys/secure_storage/ @nrfconnect/ncs-aegir
827829
/subsys/settings/ @nrfconnect/ncs-pluto @rghaddab
828830
/subsys/sdfw_services/services/extmem/ @nrfconnect/ncs-charon
829831
/subsys/sdfw_services/services/suit_service/ @nrfconnect/ncs-charon
@@ -858,8 +860,10 @@
858860
/tests/drivers/flash/flash_rpc/ @nrfconnect/ncs-pluto
859861
/tests/drivers/flash_patch/ @nrfconnect/ncs-pluto
860862
/tests/drivers/fprotect/ @nrfconnect/ncs-pluto
863+
/tests/drivers/grtc/ @nrfconnect/ncs-low-level-test
861864
/tests/drivers/lpuart/ @nordic-krch @nrfconnect/ncs-low-level-test
862865
/tests/drivers/mspi/app_fault_timer/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
866+
/tests/drivers/mspi/error_cases/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
863867
/tests/drivers/mspi/mspi_with_spis/ @nrfconnect/ncs-low-level-test
864868
/tests/drivers/mspi/trap_handler/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
865869
/tests/drivers/nrf_wifi/ @sachinthegreen @krish2718
@@ -943,6 +947,7 @@
943947
/tests/subsys/pcd/ @nrfconnect/ncs-pluto
944948
/tests/subsys/sdfw_services/ @nrfconnect/ncs-aurora
945949
/tests/subsys/suit/ @nrfconnect/ncs-charon
950+
/tests/subsys/usb/negotiated_speed/ @nrfconnect/ncs-low-level-test
946951
/tests/tfm/ @nrfconnect/ncs-aegir @magnev
947952
/tests/unity/ @nordic-krch
948953
/tests/zephyr/boards/nrf/ @nrfconnect/ncs-low-level-test
@@ -957,7 +962,7 @@
957962
/tests/zephyr/drivers/i2c/i2c_bme688/ @nrfconnect/ncs-low-level-test
958963
/tests/zephyr/drivers/i2c/i2c_target_api/ @nrfconnect/ncs-low-level-test
959964
/tests/zephyr/drivers/i2s/ @nrfconnect/ncs-low-level-test
960-
/tests/zephyr/drivers/mspi/api/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
965+
/tests/zephyr/drivers/mspi/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
961966
/tests/zephyr/drivers/pwm/ @nrfconnect/ncs-low-level-test
962967
/tests/zephyr/drivers/retained_mem/ @nrfconnect/ncs-low-level-test
963968
/tests/zephyr/drivers/sensor/ @nrfconnect/ncs-low-level-test
@@ -966,7 +971,7 @@
966971
/tests/zephyr/drivers/uart/ @nrfconnect/ncs-low-level-test
967972
/tests/zephyr/drivers/watchdog/ @nrfconnect/ncs-low-level-test
968973
/tests/zephyr/kernel/timer/timer_behavior/ @nrfconnect/ncs-low-level-test
969-
/tests/subsys/usb/negotiated_speed/ @nrfconnect/ncs-low-level-test
974+
/tests/zephyr/subsys/secure_storage/ @nrfconnect/ncs-aegir
970975
/tests/zephyr/subsys/settings/performance/ @nrfconnect/ncs-pluto @rghaddab
971976

972977
/tests/benchmarks/multicore/idle/*.rst @nrfconnect/ncs-si-bluebagel-doc

Kconfig.nrf

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ config MCUMGR_TRANSPORT_NETBUF_SIZE
8080
default 2475 if MCUMGR_TRANSPORT_BT_REASSEMBLY
8181
default 1024 if UPDATEABLE_IMAGE_NUMBER > 1
8282

83-
# When using HCI on the nRF5340 we need a larger command buffer.
84-
config BT_BUF_CMD_TX_COUNT
85-
default 10 if SOC_COMPATIBLE_NRF5340_CPUAPP || SOC_COMPATIBLE_NRF5340_CPUNET
86-
8783
config INIT_ARCH_HW_AT_BOOT
8884
default y
8985
help
@@ -104,24 +100,21 @@ config NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE
104100
chosen Zephyr flash devicetree node to ensure that swapping can be
105101
performed.
106102

107-
config GETOPT
108-
default n
109-
110103
# Temporary hack to be able to build samples and tests on the nRF51L15/nRF54L09 Eng A/nRF54L20 Eng A/nRF7120 FLPR core
111104
config FLASH_BASE_ADDRESS
112105
hex
113106
depends on PARTITION_MANAGER_ENABLED
114-
depends on SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF7120_ENGA_CPUFLPR
115-
default 0x0 if SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR
107+
depends on SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF54LM20A_ENGA_CPUFLPR || SOC_NRF54LV10A_ENGA_CPUFLPR|| SOC_NRF7120_ENGA_CPUFLPR
108+
default 0x0 if SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF54LM20A_ENGA_CPUFLPR || SOC_NRF54LV10A_ENGA_CPUFLPR
116109
default 0x2C0000 if SOC_NRF7120_ENGA_CPUFLPR
117110

118111
config FLASH_SIZE
119112
int
120113
depends on PARTITION_MANAGER_ENABLED
121-
depends on SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF7120_ENGA_CPUFLPR
122-
default 1012 if SOC_NRF54L09_ENGA_CPUFLPR
114+
depends on SOC_NRF54L15_CPUFLPR || SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF54LM20A_ENGA_CPUFLPR || SOC_NRF54LV10A_ENGA_CPUFLPR || SOC_NRF7120_ENGA_CPUFLPR
115+
default 1012 if SOC_NRF54L09_ENGA_CPUFLPR || SOC_NRF54LV10A_ENGA_CPUFLPR
123116
default 1524 if SOC_NRF54L15_CPUFLPR
124-
default 2036 if SOC_NRF54L20_ENGA_CPUFLPR
117+
default 2036 if SOC_NRF54L20_ENGA_CPUFLPR || SOC_NRF54LM20A_ENGA_CPUFLPR
125118
default 128 if SOC_NRF7120_ENGA_CPUFLPR
126119

127120
config NRF_SECURITY_ENABLER

applications/connectivity_bridge/boards/thingy91_nrf52840.conf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ CONFIG_BT_NUS=y
1818
CONFIG_BT_GATT_CLIENT=y
1919
CONFIG_BT_SMP=y
2020
CONFIG_BT_CTLR_RX_BUFFERS=10
21+
CONFIG_BT_BUF_EVT_RX_COUNT=11
2122
CONFIG_BT_BUF_ACL_TX_COUNT=10
2223
CONFIG_BT_BUF_ACL_TX_SIZE=251
2324
CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
@@ -37,4 +38,7 @@ CONFIG_DP_DRIVER=y
3738
CONFIG_CMSIS_DAP_DEVICE_VENDOR="Nordic Semiconductor ASA"
3839
CONFIG_CMSIS_DAP_DEVICE_NAME="nrf91"
3940

40-
CONFIG_USB_CDC_ACM_RINGBUF_SIZE=15360
41+
CONFIG_USB_CDC_ACM_RINGBUF_SIZE=12280
42+
43+
# Reduce logging to save flash space
44+
CONFIG_LOG_MAX_LEVEL=1

applications/connectivity_bridge/boards/thingy91x_nrf5340_cpuapp.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ CONFIG_BT_BUF_ACL_RX_SIZE=251
1717
CONFIG_BT_NUS=y
1818
CONFIG_BT_GATT_CLIENT=y
1919
CONFIG_BT_SMP=y
20+
CONFIG_BT_BUF_EVT_RX_COUNT=11
2021
CONFIG_BT_BUF_ACL_TX_COUNT=10
2122
CONFIG_BT_BUF_ACL_TX_SIZE=251
2223
CONFIG_BT_CTLR_DATA_LENGTH_MAX=251

0 commit comments

Comments
 (0)