This feature is in tree and used by the SOF app, but we don't have a local test for it. Add one, including a case to track regressions in a known failure mode (where the second CPU wouldn't get its IDC interrupts set up correctly if spawned at runtime). Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
8 lines
196 B
CMake
8 lines
196 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(smp_boot_delay)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|