NCS crash arch_system_halt

Hi,

I have a use case where I want to use USB ACM CDC with HR central.

I am using examples central_hr and cdc_acm examples from the NCS and it is working great separately.

I merged these two projects and it's crashing. The value of reason is 3.


I used cdc_acm example and moved the parameters to this project from the central_hr.

This is my cdc_acm project directory

I am also attaching the proj.conf and the cmake file.

# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(cdc_acm)

include(${ZEPHYR_BASE}/samples/subsys/usb/common/common.cmake)

FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})
zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)

8738.prj.conf

It crashes between line numbers 455 and 465.

Related