1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 */ 9 10 #ifndef RTCONFIG_PROJECT_H__ 11 #define RTCONFIG_PROJECT_H__ 12 13 #define RT_HEAP_SIZE (1024*1024*8) 14 15 #ifdef _MSC_VER 16 /* disable some warning in MSC */ 17 // #pragma warning(disable:4103) /* structure packing changed by including file */ 18 // #pragma warning(disable:4273) /* to ignore: warning C4273: inconsistent dll linkage */ 19 #endif /* _MSC_VER */ 20 21 #endif /* RTCONFIG_PROJECT_H__ */ 22