risc-v add irq stack

This commit is contained in:
acevest
2019-10-06 16:52:48 +08:00
parent f666ae3131
commit 93ae1c96ca
4 changed files with 25 additions and 1 deletions

View File

@@ -48,6 +48,9 @@
// 配置TencentOS tiny空闲任务栈大小
#define TOS_CFG_IDLE_TASK_STK_SIZE 512u
// 配置TencentOS tiny中断栈大小
#define TOS_CFG_IRQ_STK_SIZE 128u
// 配置TencentOS tiny的tick频率
#define TOS_CFG_CPU_TICK_PER_SECOND 1000u

View File

@@ -43,5 +43,6 @@
#define TOS_CFG_MMBLK_EN 1u
#define TOS_CFG_IRQ_STK_SIZE 128u
#endif /* INC_TOS_CONFIG_H_ */