在向导:9. Examples and Demonstrations — Processor SDK RTOS Documentation
software-dl.ti.com/…/Examples_and_Demonstrations.html
中有一项注意:Before running image demo for AM572x and K2H platforms on arm and c66x core , we need to increase stack size in netctrl.c file from 2048 to 4096 and rebuild the NDK library and driver, otherwise the demo fails
请问具体应该怎么实现呢?
Shine:
stack的修改如下TaskCreate( NS_BootTask, "ConfigBoot", OS_TASKPRINORM, 4096,(UINT32)hCfg, 0, 0 );
processors.wiki.ti.com/…/Processor_SDK_RTOS_NDKNDK library的重新编译如下。
processors.wiki.ti.com/…/Rebuilding_the_NDK_Core
Yiran YONG:
回复 Shine:
你好,具体修改的语句是在哪里执行呢?