1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2014, STMicroelectronics International N.V. 4 * All rights reserved. 5 */ 6 7 #ifndef USER_TA_HEADER_DEFINES_H 8 #define USER_TA_HEADER_DEFINES_H 9 10 #include <ta_create_fail_test.h> 11 12 #define TA_UUID TA_CREATE_FAIL_TEST_UUID 13 14 #define TA_FLAGS (TA_FLAG_USER_MODE | TA_FLAG_EXEC_DDR) 15 #define TA_STACK_SIZE (1 * 1024) 16 #define TA_DATA_SIZE (32 * 1024) 17 18 #endif /* USER_TA_HEADER_DEFINES_H */ 19