-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: benchmarks: try adc, gpio and spim with DVFS
Testing Signed-off-by: Piotr Kosycarz <[email protected]>
- Loading branch information
1 parent
4389cc3
commit a689ba8
Showing
8 changed files
with
312 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# | ||
# Copyright (c) 20245 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
|
||
choice LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION | ||
prompt "Local domain clock frequency" | ||
default LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
|
||
config LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
bool "320MHz" | ||
|
||
config LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ | ||
bool "128MHz" | ||
|
||
config LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ | ||
bool "64MHz" | ||
|
||
endchoice | ||
|
||
config LOCAL_DOMAIN_CLOCK_FREQUENCY_MHZ | ||
int | ||
default 320 if LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
default 128 if LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ | ||
default 64 if LOCAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ | ||
|
||
source "Kconfig.zephyr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.