1 /*************************************************************************** 2 * Copyright (c) 2024 Microsoft Corporation 3 * 4 * This program and the accompanying materials are made available under the 5 * terms of the MIT License which is available at 6 * https://opensource.org/licenses/MIT. 7 * 8 * SPDX-License-Identifier: MIT 9 **************************************************************************/ 10 11 12 /**************************************************************************/ 13 /**************************************************************************/ 14 /** */ 15 /** ThreadX Component */ 16 /** */ 17 /** OSEK User Specific */ 18 /** */ 19 /**************************************************************************/ 20 /**************************************************************************/ 21 22 /**************************************************************************/ 23 /* */ 24 /* EKV DEFINITIONS RELEASE */ 25 /* */ 26 /* osek_user.h PORTABLE C */ 27 /* 6.1.7 */ 28 /* AUTHOR */ 29 /* */ 30 /* William E. Lamie, Microsoft Corporation */ 31 /* */ 32 /* DESCRIPTION */ 33 /* */ 34 /* This files contains user configurable compile time paramteres for */ 35 /* the OSEK implementation. */ 36 /* */ 37 /* RELEASE HISTORY */ 38 /* */ 39 /* DATE NAME DESCRIPTION */ 40 /* */ 41 /* 06-02-2021 William E. Lamie Initial Version 6.1.7 */ 42 /* */ 43 /**************************************************************************/ 44 45 #ifndef OSEK_USER_H 46 #define OSEK_USER_H 47 48 /* Set the size of the OSEK memory available for creating OSEK objects and tasks. */ 49 #define OSEK_MEMORY_SIZE (64U*1024U) 50 51 #endif 52 53 /******************************* End of file ************************/ 54