18 lines
482 B
Plaintext
18 lines
482 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config BOARD_QEMU_CORTEX_M0
|
|
select QEMU_TARGET
|
|
|
|
config NRF_TIMER_TIMER
|
|
bool "nRF Timer Counter (NRF_TIMER0) Timer"
|
|
depends on CLOCK_CONTROL
|
|
depends on SOC_COMPATIBLE_NRF
|
|
depends on SYS_CLOCK_EXISTS
|
|
select TICKLESS_CAPABLE
|
|
default y
|
|
help
|
|
This module implements a kernel device driver for the nRF Timer
|
|
Counter NRF_TIMER0 and provides the standard "system clock driver"
|
|
interfaces.
|