rtconfig_project.h 457 B

1234567891011121314151617181920
  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. #ifndef RTCONFIG_PROJECT_H__
  10. #define RTCONFIG_PROJECT_H__
  11. #define RT_HEAP_SIZE (1024*1024*8)
  12. #ifdef _MSC_VER
  13. /* disable some warning in MSC */
  14. // #pragma warning(disable:4273) /* to ignore: warning C4273: inconsistent dll linkage */
  15. #endif /* _MSC_VER */
  16. #endif /* RTCONFIG_PROJECT_H__ */