1# SPDX-License-Identifier: Apache-2.0
2
3config BOARD_NATIVE_POSIX
4	bool
5	select NATIVE_POSIX_TIMER
6	select NATIVE_POSIX_CONSOLE
7
8if BOARD_NATIVE_POSIX
9
10comment "Native POSIX options"
11
12config NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME
13	bool "Slow down execution to real time"
14	default y if BT_USERCHAN || !TEST
15	help
16	  When selected the execution of the process will be slowed down to real time.
17	  (if there is a lot of load it may be slower than real time)
18	  If deselected, the process will run as fast as possible.
19	  Note that this only decouples simulated time from real/wall time. In either
20	  case the zephyr kernel and application cannot tell the difference unless they
21	  interact with some other driver/device which runs at real time.
22
23config HAS_SDL
24	bool
25	help
26	  This option specifies that the target board has SDL support
27
28endif
29