mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
sys/posix_sleep: add module to Kconfig
This commit is contained in:
parent
bf7c697c8d
commit
b8eb12d43b
@ -27,6 +27,7 @@ rsource "net/Kconfig"
|
|||||||
rsource "Kconfig.newlib"
|
rsource "Kconfig.newlib"
|
||||||
rsource "Kconfig.stdio"
|
rsource "Kconfig.stdio"
|
||||||
rsource "od/Kconfig"
|
rsource "od/Kconfig"
|
||||||
|
rsource "posix/Kconfig"
|
||||||
rsource "phydat/Kconfig"
|
rsource "phydat/Kconfig"
|
||||||
rsource "pm_layered/Kconfig"
|
rsource "pm_layered/Kconfig"
|
||||||
rsource "ps/Kconfig"
|
rsource "ps/Kconfig"
|
||||||
|
16
sys/posix/Kconfig
Normal file
16
sys/posix/Kconfig
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Copyright (c) 2021 HAW Hamburg
|
||||||
|
#
|
||||||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
# directory for more details.
|
||||||
|
#
|
||||||
|
|
||||||
|
menu "Posix"
|
||||||
|
depends on TEST_KCONFIG
|
||||||
|
|
||||||
|
config MODULE_POSIX_HEADERS
|
||||||
|
bool
|
||||||
|
|
||||||
|
rsource "sleep/Kconfig"
|
||||||
|
|
||||||
|
endmenu # Posix
|
12
sys/posix/sleep/Kconfig
Normal file
12
sys/posix/sleep/Kconfig
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Copyright (c) 2021 HAW Hamburg
|
||||||
|
#
|
||||||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
# directory for more details.
|
||||||
|
#
|
||||||
|
|
||||||
|
config MODULE_POSIX_SLEEP
|
||||||
|
bool "Posix Sleep"
|
||||||
|
depends on MODULE_ZTIMER_MSEC
|
||||||
|
depends on MODULE_ZTIMER_USEC
|
||||||
|
select MODULE_POSIX_HEADERS
|
Loading…
Reference in New Issue
Block a user