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 #ifdef PROJECT_CONFIG_HEADER_FILE
16 #include PROJECT_CONFIG_HEADER_FILE
17 #endif
18 
19 /*
20  * Platform defined header file for TF-M configs.
21  * Path: ${TARGET_PLATFORM_PATH}/config_tfm_target.h
22  */
23 #ifdef TARGET_CONFIG_HEADER_FILE
24 #include TARGET_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