board: nrf54bsim: Add cmake check to prevent targetting the flipper core
This is not yet possible. So let's add a check that provides an easy to understanding error message instead of a bunch of kconfig and build warnings. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
13a5536838
commit
ced0676911
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ find_package(BabbleSim)
|
|||
|
||||
zephyr_library()
|
||||
|
||||
if (CONFIG_BOARD_NRF54L15BSIM_NRF54L15_CPUFLPR)
|
||||
message(FATAL_ERROR "Targeting the nrf54l15bsim/nrf54l15/cpuflpr core is not yet supported")
|
||||
endif()
|
||||
|
||||
# Due to the BLE controller assumption about enum size
|
||||
zephyr_compile_options(
|
||||
-fshort-enums
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue