31 lines
645 B
Plaintext
31 lines
645 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_NRF52_BSIM
|
|
|
|
comment "NRF52_BSIM options"
|
|
|
|
config PRINTK_HOOK_INIT_PRIORITY
|
|
int
|
|
default 50
|
|
help
|
|
Just the driver init priority
|
|
|
|
endif # BOARD_NRF52_BSIM
|
|
|
|
|
|
# This would eventually be shared by a possible family of simulated NRF boards
|
|
# which use BabbleSim. When that happens, we can move this to a common
|
|
# Kconfig file
|
|
|
|
config SOC_SERIES_BSIM_NRFXX
|
|
bool
|
|
depends on SOC_POSIX
|
|
help
|
|
Any NRF simulated SOC with BabbleSim, based on the POSIX arch
|
|
|
|
config SOC_SERIES_BSIM_NRF52X
|
|
bool
|
|
depends on SOC_SERIES_BSIM_NRFXX
|
|
help
|
|
Any NRF52 simulated SOC with BabbleSim, based on the POSIX arch
|