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 13 /*-------- Stack size of CPU modes -------------------------------------------*/ 14 #define UND_STK_SIZE 512 15 #define SVC_STK_SIZE 4096 16 #define ABT_STK_SIZE 512 17 #define IRQ_STK_SIZE 1024 18 #define FIQ_STK_SIZE 1024 19 #define SYS_STK_SIZE 512 20 #define Heap_Size 512 21 #endif 22