:orphan: .. title:: CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME .. kconfig:: CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME CONFIG_NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME ######################################### *Slow down execution to real time* Type: ``bool`` Help ==== .. code-block:: none When selected the execution of the process will be slowed down to real time. (if there is a lot of load it may be slower than real time) If deselected, the process will run as fast as possible. Note that this only decouples simulated time from real/wall time. In either case the zephyr kernel and application cannot tell the difference unless they interact with some other driver/device which runs at real time. Direct dependencies =================== \ :kconfig:`BOARD_NATIVE_POSIX ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :kconfig:`BT_USERCHAN ` || !\ :kconfig:`TEST ` Kconfig definition ================== At ``/posix/native_posix/Kconfig:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:37`` → ``/Kconfig:75`` Menu path: (Top) → Board Options .. code-block:: kconfig config NATIVE_POSIX_SLOWDOWN_TO_REAL_TIME bool "Slow down execution to real time" default y if BT_USERCHAN || !TEST depends on BOARD_NATIVE_POSIX help When selected the execution of the process will be slowed down to real time. (if there is a lot of load it may be slower than real time) If deselected, the process will run as fast as possible. Note that this only decouples simulated time from real/wall time. In either case the zephyr kernel and application cannot tell the difference unless they interact with some other driver/device which runs at real time. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*