Skip to content

Commit a7205fb

Browse files
committed
samples: rtxxx-amp: amp_blinky: Disable for mimxrt700_evk/hifi4
Add a build error conditional for mimxrt700_evk/mimxrt798s/cm33_cpu0, thus disabling build for the hifi4 domain. Remove that target from platform_allow in sample.yaml. Signed-off-by: Vit Stanicek <[email protected]>
1 parent 3ae962f commit a7205fb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

samples/boards/nxp/adsp/rtxxx/amp_blinky/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ project(amp_blinky)
99
target_sources(app PRIVATE src/main.c)
1010

1111
include("${CMAKE_CURRENT_LIST_DIR}/../common/dsp-load.cmake")
12+
13+
if(BOARD_MIMXRT700_EVK_MIMXRT798S_CM33_CPU0)
14+
message(FATAL_ERROR "This example is not supported on the selected board.")
15+
endif()

samples/boards/nxp/adsp/rtxxx/amp_blinky/sample.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ common:
88
min_flash: 1024
99
platform_allow:
1010
- mimxrt685_evk/mimxrt685s/cm33
11-
- mimxrt700_evk/mimxrt798s/cm33_cpu0
1211
harness: console
1312
harness_config:
1413
type: one_line

0 commit comments

Comments
 (0)