From 87c281da1c89a9936a7288067e818f83a93d4c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Tue, 1 Jul 2025 14:15:58 +0200 Subject: [PATCH 1/6] samples: zephyr: subsys: usb: cdc_acm: Switch to nrf54lm20dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch sample from nrf54lm20pdk to nrf54lm20dk. Update sample configuration to match the original one. Keep execution of this sample on 54H20 and 54LM20 as this version checks more logs (these additional logs are printed only with host computer connected). Signed-off-by: Sebastian Głąb --- .../zephyr/subsys/usb/cdc_acm/CMakeLists.txt | 2 +- samples/zephyr/subsys/usb/cdc_acm/app.overlay | 1 + samples/zephyr/subsys/usb/cdc_acm/prj.conf | 19 ++++---- samples/zephyr/subsys/usb/cdc_acm/sample.yaml | 43 ++++++++++--------- .../subsys/usb/cdc_acm/usbd_next_prj.conf | 14 ------ 5 files changed, 35 insertions(+), 44 deletions(-) delete mode 100644 samples/zephyr/subsys/usb/cdc_acm/usbd_next_prj.conf diff --git a/samples/zephyr/subsys/usb/cdc_acm/CMakeLists.txt b/samples/zephyr/subsys/usb/cdc_acm/CMakeLists.txt index 5e23dd6f7d75..5893a38fd9af 100644 --- a/samples/zephyr/subsys/usb/cdc_acm/CMakeLists.txt +++ b/samples/zephyr/subsys/usb/cdc_acm/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) -project(mass) +project(cdc_acm) include(${ZEPHYR_BASE}/samples/subsys/usb/common/common.cmake) FILE(GLOB app_sources ${ZEPHYR_BASE}/samples/subsys/usb/cdc_acm/src/*.c) diff --git a/samples/zephyr/subsys/usb/cdc_acm/app.overlay b/samples/zephyr/subsys/usb/cdc_acm/app.overlay index 800d63caf033..832bfb4af7e8 100644 --- a/samples/zephyr/subsys/usb/cdc_acm/app.overlay +++ b/samples/zephyr/subsys/usb/cdc_acm/app.overlay @@ -1,5 +1,6 @@ &zephyr_udc0 { cdc_acm_uart0 { compatible = "zephyr,cdc-acm-uart"; + label = "Zephyr USB CDC-ACM"; }; }; diff --git a/samples/zephyr/subsys/usb/cdc_acm/prj.conf b/samples/zephyr/subsys/usb/cdc_acm/prj.conf index 55e4fe9217fb..e0012027ec6a 100644 --- a/samples/zephyr/subsys/usb/cdc_acm/prj.conf +++ b/samples/zephyr/subsys/usb/cdc_acm/prj.conf @@ -1,11 +1,14 @@ +CONFIG_USB_DEVICE_STACK_NEXT=y + CONFIG_STDOUT_CONSOLE=y -CONFIG_USB_DEVICE_STACK=y -CONFIG_USB_DEVICE_PRODUCT="Zephyr CDC ACM sample" -CONFIG_USB_DEVICE_PID=0x0001 -CONFIG_LOG=y -CONFIG_USB_DRIVER_LOG_LEVEL_ERR=y -CONFIG_USB_DEVICE_LOG_LEVEL_ERR=y CONFIG_SERIAL=y -CONFIG_UART_INTERRUPT_DRIVEN=y CONFIG_UART_LINE_CTRL=y -CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n +CONFIG_USBD_CDC_ACM_CLASS=y + +CONFIG_LOG=y +CONFIG_USBD_LOG_LEVEL_ERR=y +CONFIG_UDC_DRIVER_LOG_LEVEL_ERR=y +CONFIG_USBD_CDC_ACM_LOG_LEVEL_ERR=y + +CONFIG_SAMPLE_USBD_PID=0x0001 +CONFIG_SAMPLE_USBD_PRODUCT="USBD CDC ACM sample" diff --git a/samples/zephyr/subsys/usb/cdc_acm/sample.yaml b/samples/zephyr/subsys/usb/cdc_acm/sample.yaml index 896fdff8f3af..ad8b38c63499 100644 --- a/samples/zephyr/subsys/usb/cdc_acm/sample.yaml +++ b/samples/zephyr/subsys/usb/cdc_acm/sample.yaml @@ -1,24 +1,25 @@ sample: name: CDC ACM USB +common: + tags: + - usb + - ci_samples_zephyr_subsys_usb + platform_allow: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + integration_platforms: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + harness: console + harness_config: + type: multi_line + regex: + - "Wait for DTR" + - "cdc_acm_echo: USBD message: New device configuration" + - "cdc_acm_echo: USBD message: CDC ACM line coding" + - "cdc_acm_echo: Baudrate" tests: - nrf.extended.sample.usb_device_next.cdc-acm: - tags: - - usb - - ci_samples_zephyr_subsys_usb - extra_args: CONF_FILE="usbd_next_prj.conf" - platform_allow: - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0.csp/nrf54lm20a/cpuapp - - nrf54h20dk/nrf54h20/cpuapp - integration_platforms: - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54h20dk/nrf54h20/cpuapp - harness: console - harness_config: - type: one_line - regex: - - "Wait for DTR" - - "cdc_acm_echo: USBD message: CDC ACM control line state" - - "cdc_acm_echo: USBD message: CDC ACM line coding" - - "cdc_acm_echo: Baudrate 115200" + nrf.extended.sample.usb_device_next.cdc-acm: {} + nrf.extended.sample.usb_device_next.cdc-acm-workqueue: + extra_args: + - DCONFIG_USBD_CDC_ACM_WORKQUEUE=y diff --git a/samples/zephyr/subsys/usb/cdc_acm/usbd_next_prj.conf b/samples/zephyr/subsys/usb/cdc_acm/usbd_next_prj.conf deleted file mode 100644 index f08928438b77..000000000000 --- a/samples/zephyr/subsys/usb/cdc_acm/usbd_next_prj.conf +++ /dev/null @@ -1,14 +0,0 @@ -CONFIG_USB_DEVICE_STACK_NEXT=y - -CONFIG_STDOUT_CONSOLE=y -CONFIG_SERIAL=y -CONFIG_UART_LINE_CTRL=y -CONFIG_USBD_CDC_ACM_CLASS=y - -CONFIG_LOG=y -CONFIG_USBD_LOG_LEVEL_WRN=y -CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y -CONFIG_USBD_CDC_ACM_LOG_LEVEL_ERR=y - -CONFIG_SAMPLE_USBD_PID=0x0001 -CONFIG_SAMPLE_USBD_PRODUCT="USBD CDC ACM sample" From f948f68230713811d49d410f0a6345bf08562dd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Tue, 1 Jul 2025 14:20:20 +0200 Subject: [PATCH 2/6] samples: zephyr: subsys: usb: hid-keyboard: Switch to nrf54lm20dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch sample from nrf54lm20pdk to nrf54lm20dk. Update sample configuration to match the original one. Keep execution of this sample on 54H20 and 54LM20 as this version checks more logs (these additional logs are printed only with host computer connected). Signed-off-by: Sebastian Głąb --- .../zephyr/subsys/usb/hid-keyboard/prj.conf | 3 +- .../subsys/usb/hid-keyboard/sample.yaml | 37 ++++--------------- 2 files changed, 8 insertions(+), 32 deletions(-) diff --git a/samples/zephyr/subsys/usb/hid-keyboard/prj.conf b/samples/zephyr/subsys/usb/hid-keyboard/prj.conf index 9813712669e8..4f277d40e62f 100644 --- a/samples/zephyr/subsys/usb/hid-keyboard/prj.conf +++ b/samples/zephyr/subsys/usb/hid-keyboard/prj.conf @@ -5,9 +5,8 @@ CONFIG_LOG=y CONFIG_USBD_LOG_LEVEL_INF=y CONFIG_USBD_HID_LOG_LEVEL_WRN=y CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y -CONFIG_LOG_BUFFER_SIZE=8192 - CONFIG_SAMPLE_USBD_PID=0x0007 +CONFIG_SAMPLE_USBD_REMOTE_WAKEUP=y CONFIG_GPIO=y CONFIG_INPUT=y diff --git a/samples/zephyr/subsys/usb/hid-keyboard/sample.yaml b/samples/zephyr/subsys/usb/hid-keyboard/sample.yaml index 71e0b9e9d0b2..a318b0a2396f 100644 --- a/samples/zephyr/subsys/usb/hid-keyboard/sample.yaml +++ b/samples/zephyr/subsys/usb/hid-keyboard/sample.yaml @@ -3,7 +3,6 @@ sample: common: filter: dt_alias_exists("sw0") and dt_alias_exists("led0") depends_on: - # - usbd - gpio tags: - usb @@ -20,42 +19,20 @@ common: - "USBD message: VBUS ready" - "Actual device speed 2" - "s-in-status finished" + integration_platforms: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + platform_allow: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp tests: - nrf.extended.sample.usbd.hid-keyboard: - integration_platforms: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - platform_allow: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp + nrf.extended.sample.usbd.hid-keyboard: {} nrf.extended.sample.usbd.hid-keyboard.out-report: - integration_platforms: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - platform_allow: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp extra_args: - EXTRA_DTC_OVERLAY_FILE="out_report.overlay" nrf.extended.sample.usbd.hid-keyboard.large-report: - integration_platforms: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - platform_allow: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp extra_args: - EXTRA_DTC_OVERLAY_FILE="large_in_report.overlay" nrf.extended.sample.usbd.hid-keyboard.large-out-report: - integration_platforms: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - platform_allow: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp extra_args: - EXTRA_DTC_OVERLAY_FILE="large_out_report.overlay" From 083e4d9d47e05dd329f98ea62dd719e0fdc6998d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Tue, 1 Jul 2025 14:21:53 +0200 Subject: [PATCH 3/6] samples: zephyr: subsys: usb: hid-mouse: Switch to nrf54lm20dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch sample from nrf54lm20pdk to nrf54lm20dk. Update sample configuration to match the original one. Keep execution of this sample on 54H20 and 54LM20 as this version checks more logs (these additional logs are printed only with host computer connected). Signed-off-by: Sebastian Głąb --- samples/zephyr/subsys/usb/hid-mouse/prj.conf | 1 - samples/zephyr/subsys/usb/hid-mouse/sample.yaml | 15 ++++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/samples/zephyr/subsys/usb/hid-mouse/prj.conf b/samples/zephyr/subsys/usb/hid-mouse/prj.conf index 30fa2d9ee80c..9d5ea1fc142e 100644 --- a/samples/zephyr/subsys/usb/hid-mouse/prj.conf +++ b/samples/zephyr/subsys/usb/hid-mouse/prj.conf @@ -5,7 +5,6 @@ CONFIG_LOG=y CONFIG_USBD_LOG_LEVEL_INF=y CONFIG_USBD_HID_LOG_LEVEL_WRN=y CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y -CONFIG_LOG_BUFFER_SIZE=8192 CONFIG_SAMPLE_USBD_PID=0x0007 CONFIG_GPIO=y diff --git a/samples/zephyr/subsys/usb/hid-mouse/sample.yaml b/samples/zephyr/subsys/usb/hid-mouse/sample.yaml index 8c5d3446e5a8..de1d5a1b26b3 100644 --- a/samples/zephyr/subsys/usb/hid-mouse/sample.yaml +++ b/samples/zephyr/subsys/usb/hid-mouse/sample.yaml @@ -10,15 +10,6 @@ common: tests: nrf.extended.sample.usb_device_next.hid-mouse: - # depends_on: - # - usbd - integration_platforms: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - platform_allow: - - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp timeout: 15 harness: console harness_config: @@ -28,3 +19,9 @@ tests: - "FS bNumConfigurations 1" - "Actual device speed 2" - "s-in-status finished" + integration_platforms: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + platform_allow: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp From e531a9371943ddf453324bd35e906d7a6bfc5a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Tue, 1 Jul 2025 14:22:48 +0200 Subject: [PATCH 4/6] samples: zephyr: subsys: usb: mass: Switch to nrf54lm20dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch sample from nrf54lm20pdk to nrf54lm20dk. Update sample configuration to match the original one. Keep execution of this sample on 54H20 and 54LM20 as this version checks more logs (these additional logs are printed only with host computer connected). Signed-off-by: Sebastian Głąb --- samples/zephyr/subsys/usb/mass/prj.conf | 21 ++++---- samples/zephyr/subsys/usb/mass/sample.yaml | 54 +++++++------------ .../zephyr/subsys/usb/mass/usbd_next_prj.conf | 15 ------ 3 files changed, 31 insertions(+), 59 deletions(-) delete mode 100644 samples/zephyr/subsys/usb/mass/usbd_next_prj.conf diff --git a/samples/zephyr/subsys/usb/mass/prj.conf b/samples/zephyr/subsys/usb/mass/prj.conf index 0954afcd0eec..dd9d784070de 100644 --- a/samples/zephyr/subsys/usb/mass/prj.conf +++ b/samples/zephyr/subsys/usb/mass/prj.conf @@ -1,14 +1,15 @@ +CONFIG_USB_DEVICE_STACK_NEXT=y + CONFIG_STDOUT_CONSOLE=y +CONFIG_SERIAL=y +CONFIG_UART_LINE_CTRL=y +CONFIG_USBD_MSC_CLASS=y +CONFIG_USBD_MSC_LUNS_PER_INSTANCE=3 -#USB related configs -CONFIG_USB_DEVICE_STACK=y -CONFIG_USB_DEVICE_PRODUCT="Zephyr MSC sample" -CONFIG_USB_DEVICE_PID=0x0008 CONFIG_LOG=y -CONFIG_USB_DRIVER_LOG_LEVEL_ERR=y -CONFIG_USB_MASS_STORAGE=y -CONFIG_USB_DEVICE_LOG_LEVEL_ERR=y -CONFIG_USB_MASS_STORAGE_LOG_LEVEL_ERR=y -CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n +CONFIG_USBD_LOG_LEVEL_WRN=y +CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y -CONFIG_MAIN_STACK_SIZE=1536 +CONFIG_SAMPLE_USBD_PID=0x0008 +CONFIG_SAMPLE_USBD_PRODUCT="USBD MSC sample" +CONFIG_MAIN_STACK_SIZE=2048 diff --git a/samples/zephyr/subsys/usb/mass/sample.yaml b/samples/zephyr/subsys/usb/mass/sample.yaml index 22aa3a20a765..b588ec3858f4 100644 --- a/samples/zephyr/subsys/usb/mass/sample.yaml +++ b/samples/zephyr/subsys/usb/mass/sample.yaml @@ -1,24 +1,22 @@ sample: name: Mass Storage +common: + min_ram: 128 + platform_allow: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + integration_platforms: + - nrf54h20dk/nrf54h20/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp + extra_args: + - EXTRA_DTC_OVERLAY_FILE="ramdisk.overlay" + tags: + - msd + - usb + - ci_samples_zephyr_subsys_usb + tests: - nrf.extended.sample.usb_device_next.mass_ram_none: - platform_allow: - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0.csp/nrf54lm20a/cpuapp - - nrf54h20dk/nrf54h20/cpuapp - integration_platforms: - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54h20dk/nrf54h20/cpuapp - extra_args: - - CONF_FILE="usbd_next_prj.conf" - - EXTRA_DTC_OVERLAY_FILE="ramdisk.overlay" - extra_configs: - - CONFIG_LOG_DEFAULT_LEVEL=3 - tags: - - msd - - usb - - ci_samples_zephyr_subsys_usb + nrf.extended.sample.usbd.mass_ram_none: harness: console harness_config: type: multi_line @@ -28,24 +26,9 @@ tests: - "The device is put in USB mass storage mode." - "usbd_msc: Enable" - "usbd_msc: Bulk-Only Mass Storage Reset" - nrf.extended.sample.usb_device_next.mass_flash_fatfs: - modules: - - fatfs - filter: dt_compat_enabled("nordic,qspi-nor") - platform_allow: - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0.csp/nrf54lm20a/cpuapp - integration_platforms: - - nrf54lm20pdk/nrf54lm20a/cpuapp - extra_args: CONF_FILE="usbd_next_prj.conf" extra_configs: - CONFIG_LOG_DEFAULT_LEVEL=3 - - CONFIG_APP_MSC_STORAGE_FLASH_FATFS=y - tags: - - msd - - usb - - ci_samples_zephyr_subsys_usb + nrf.extended.sample.usbd.mass_ram_fat: harness: console harness_config: type: multi_line @@ -55,3 +38,6 @@ tests: - "The device is put in USB mass storage mode." - "usbd_msc: Enable" - "usbd_msc: Bulk-Only Mass Storage Reset" + extra_configs: + - CONFIG_LOG_DEFAULT_LEVEL=3 + - CONFIG_APP_MSC_STORAGE_RAM=y diff --git a/samples/zephyr/subsys/usb/mass/usbd_next_prj.conf b/samples/zephyr/subsys/usb/mass/usbd_next_prj.conf deleted file mode 100644 index dd9d784070de..000000000000 --- a/samples/zephyr/subsys/usb/mass/usbd_next_prj.conf +++ /dev/null @@ -1,15 +0,0 @@ -CONFIG_USB_DEVICE_STACK_NEXT=y - -CONFIG_STDOUT_CONSOLE=y -CONFIG_SERIAL=y -CONFIG_UART_LINE_CTRL=y -CONFIG_USBD_MSC_CLASS=y -CONFIG_USBD_MSC_LUNS_PER_INSTANCE=3 - -CONFIG_LOG=y -CONFIG_USBD_LOG_LEVEL_WRN=y -CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y - -CONFIG_SAMPLE_USBD_PID=0x0008 -CONFIG_SAMPLE_USBD_PRODUCT="USBD MSC sample" -CONFIG_MAIN_STACK_SIZE=2048 From 01536211cce2b204485e64755fd20de910d40643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Mon, 25 Aug 2025 14:59:01 +0200 Subject: [PATCH 5/6] tests: subsys: usb: negotiated_speed: Switch to nrf54lm20dk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch test from nrf54lm20pdk to nrf54lm20dk. Signed-off-by: Sebastian Głąb --- tests/subsys/usb/negotiated_speed/testcase.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/subsys/usb/negotiated_speed/testcase.yaml b/tests/subsys/usb/negotiated_speed/testcase.yaml index 187e34a3670f..d2cd9a9c8543 100644 --- a/tests/subsys/usb/negotiated_speed/testcase.yaml +++ b/tests/subsys/usb/negotiated_speed/testcase.yaml @@ -12,8 +12,7 @@ tests: - nrf54h20dk/nrf54h20/cpuapp platform_allow: - nrf54h20dk/nrf54h20/cpuapp - - nrf54lm20pdk/nrf54lm20a/cpuapp - - nrf54lm20pdk@0.2.0/nrf54lm20a/cpuapp + - nrf54lm20dk/nrf54lm20a/cpuapp extra_configs: - CONFIG_LOG_DEFAULT_LEVEL=3 - CONFIG_APP_MSC_STORAGE_RAM=y From 0f7cac22ce5d39eaa73b55ba6120e5a20b2e4216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20G=C5=82=C4=85b?= Date: Thu, 24 Jul 2025 14:26:54 +0200 Subject: [PATCH 6/6] manifest: Update sdk-zephyr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include: Nrfx 7936 enable usb testing on nrf54lm20dk https://github.com/nrfconnect/sdk-zephyr/pull/3082 https://github.com/zephyrproject-rtos/zephyr/pull/93667 Signed-off-by: Sebastian Głąb --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index da88c90f57a4..899b3decc5e0 100644 --- a/west.yml +++ b/west.yml @@ -65,7 +65,7 @@ manifest: # https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html - name: zephyr repo-path: sdk-zephyr - revision: 5ca258a1523d6f9a9211c51770fa7e7be2fa27ad + revision: c1bf4336ce6d3a1bf6007c06c9ed8142183e16d1 import: # In addition to the zephyr repository itself, NCS also # imports the contents of zephyr/west.yml at the above