1# Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu> 2# Copyright (c) 2022 Basalte bv 3# Copyright (c) 2023 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6config HAS_SDL 7 depends on ARCH_POSIX 8 bool 9 help 10 This option specifies that the target board has SDL support 11 12config SDL_THREAD_INTERVAL 13 int "SDL thread sleep interval" 14 default 10 15 depends on HAS_SDL 16 help 17 Sleep interval time of SDL thread to handle events in milliseconds. 18 19config SDL_THREAD_PRIORITY 20 int "SDL thread priority" 21 default 0 22 depends on HAS_SDL 23 help 24 Priority of SDL thread to handle events. 25