1 /* 2 * Copyright (c) 2022-2023, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __CONFIG_TFM_H__ 9 #define __CONFIG_TFM_H__ 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 /* 16 * Platform defined header file for TF-M configs. 17 * Path: ${TARGET_PLATFORM_PATH}/config_tfm_target.h 18 */ 19 #ifdef TARGET_CONFIG_HEADER_FILE 20 #include TARGET_CONFIG_HEADER_FILE 21 #endif 22 23 #ifdef PROJECT_CONFIG_HEADER_FILE 24 #include PROJECT_CONFIG_HEADER_FILE 25 #endif 26 27 #include "config_base.h" 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif /* __CONFIG_TFM_H__ */ 34