summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2022-03-03 16:30:07 +0000
committerIsabella Gottardi <isabella.gottardi@arm.com>2022-03-04 11:09:15 +0000
commitd5679cc8db0a6ab43369eb91089ea5fe015f552f (patch)
tree4477b3f1e5b5a70066d958d98e61ba6e5a183bb5 /scripts
parentb4123fd715e41070be5bb39600625c740185f562 (diff)
downloadml-embedded-evaluation-kit-d5679cc8db0a6ab43369eb91089ea5fe015f552f.tar.gz
MLECO-2984: Refactor components
* Use UART component from Ethos-U core-platform * Components as cmake project Change-Id: I053f3a59800abc20216e6a4df8555db357e3f21d Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/common_user_options.cmake12
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/cmake/common_user_options.cmake b/scripts/cmake/common_user_options.cmake
index ae35925..7dc68de 100644
--- a/scripts/cmake/common_user_options.cmake
+++ b/scripts/cmake/common_user_options.cmake
@@ -133,8 +133,14 @@ if (NOT TARGET_PLATFORM STREQUAL native)
set(DEFAULT_TA_CONFIG_FILE_PATH "${CMAKE_CURRENT_LIST_DIR}/timing_adapter/ta_config_u65_high_end.cmake")
endif ()
- USER_OPTION(TA_CONFIG_FILE "Path to the timing adapter configuration file"
- ${DEFAULT_TA_CONFIG_FILE_PATH}
- FILEPATH)
+ USER_OPTION(ETHOS_U_NPU_TIMING_ADAPTER_ENABLED "Specifies if the Ethos-U timing adapter is enabled"
+ ON
+ BOOL)
+
+ if (ETHOS_U_NPU_TIMING_ADAPTER_ENABLED)
+ USER_OPTION(TA_CONFIG_FILE "Path to the timing adapter configuration file"
+ ${DEFAULT_TA_CONFIG_FILE_PATH}
+ FILEPATH)
+ endif()
endif()
endif()