1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2021 Open Mobile Platform LLC
4  */
5 
6 #ifndef USER_TA_HEADER_DEFINES_H
7 #define USER_TA_HEADER_DEFINES_H
8 
9 #include <ta_supp_plugin.h>
10 #include <user_ta_header.h>
11 
12 #define TA_UUID		TA_SUPP_PLUGIN_UUID
13 #define TA_FLAGS	0
14 #define TA_STACK_SIZE	(8 * 1024)
15 #define TA_DATA_SIZE	(32 * 1024)
16 
17 #endif /* USER_TA_HEADER_DEFINES_H */
18