File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed
tests/zephyr/drivers/clock_control/nrf_clock_control Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2025 Nordic Semiconductor ASA
3
+ #
4
+ # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5
+ #
6
+
7
+ cmake_minimum_required (VERSION 3.20.0)
8
+
9
+ find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
10
+ project (nrf_clock_control)
11
+
12
+ FILE (GLOB app_sources ${ZEPHYR_BASE} /tests/drivers/clock_control/nrf_clock_control/src/*.c)
13
+ target_sources (app PRIVATE ${app_sources} )
Original file line number Diff line number Diff line change
1
+ This sample extends the same-named Zephyr sample to verify it with Nordic development kits.
2
+
3
+ Source code and basic configuration files can be found in the corresponding folder structure in zephyr/tests/drivers/clock_control/nrf_clock_control.
Original file line number Diff line number Diff line change
1
+ CONFIG_ZTEST=y
2
+
3
+ CONFIG_CLOCK_CONTROL=y
4
+ CONFIG_LOG=y
5
+ CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG=y
6
+ CONFIG_LOCAL_DOMAIN_DVFS_LIB_LOG_LEVEL_DBG=y
Original file line number Diff line number Diff line change
1
+ tests :
2
+ nrf.extended.drivers.clock.nrf_clock_control :
3
+ tags :
4
+ - drivers
5
+ - clock_control
6
+ - ci_tests_zephyr_drivers_clock_control
7
+ platform_allow :
8
+ - nrf7120pdk/nrf7120/cpuapp
You can’t perform that action at this time.
0 commit comments