rt_low_level_init.h 535 B

123456789101112131415161718192021
  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. * 2018-06-04 ArdaFu first version
  9. */
  10. #ifndef __RT_LOW_LEVEL_INIT_H__
  11. #define __RT_LOW_LEVEL_INIT_H__
  12. /*-------- Stack size of CPU modes -------------------------------------------*/
  13. #define UND_STK_SIZE 512
  14. #define SVC_STK_SIZE 4096
  15. #define ABT_STK_SIZE 512
  16. #define IRQ_STK_SIZE 1024
  17. #define FIQ_STK_SIZE 1024
  18. #define SYS_STK_SIZE 512
  19. #define Heap_Size 512
  20. #endif