mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-25 01:43:49 +08:00
Linker: https://github.com/RT-Thread/rt-thread/issues/11150 Signed-off-by: GuEe-GUI <2991707448@qq.com>
23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
menuconfig RT_USING_CLOCK_TIME
|
|
bool "Clock time subsystem"
|
|
default n
|
|
|
|
if RT_USING_CLOCK_TIME
|
|
config CLOCK_TIMER_FREQ
|
|
int "Clock time timer freq"
|
|
default 0
|
|
depends on ARCH_RISCV64
|
|
help
|
|
Base frequency (Hz) for clock time counter on RISC-V.
|
|
|
|
config RT_CLOCK_TIME_ARM_ARCH
|
|
bool "ARM ARCH Timer"
|
|
depends on RT_USING_DM
|
|
depends on ARCH_ARM_CORTEX_A || ARCH_ARMV8
|
|
default n
|
|
|
|
if RT_USING_DM
|
|
osource "$(SOC_DM_CLOCK_TIME_DIR)/Kconfig"
|
|
endif
|
|
endif
|