You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
542 B
22 lines
542 B
5 months ago
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
*/
|
||
|
|
||
|
#ifndef RTCONFIG_PROJECT_H__
|
||
|
#define RTCONFIG_PROJECT_H__
|
||
|
|
||
|
#define RT_HEAP_SIZE (1024*1024*8)
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
/* disable some warning in MSC */
|
||
|
// #pragma warning(disable:4103) /* structure packing changed by including file */
|
||
|
// #pragma warning(disable:4273) /* to ignore: warning C4273: inconsistent dll linkage */
|
||
|
#endif /* _MSC_VER */
|
||
|
|
||
|
#endif /* RTCONFIG_PROJECT_H__ */
|