This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
TI-RTOS启动时间(到main函数),这个貌似耗时很久啊。
有参考说明吗?
看这里
http://processors.wiki.ti.com/index.php/SYS/BIOS_for_the_MSP430
有详细对比说明在使用和不使用RTOS的情况下的MSP430的启动序列解释得很详细的。而且因为430在主频低,可能感觉时间会长一点。
没有RTOS
有RTOS
是的,8M 430F5529,到main大约有45ms。
我看到在startup_exec()会执行一些调用。
这个用户比如自定义的可以被调用吗?
比如MCU上电IO默认是低,,我希望上电后快速被拉高,,如果RTOS启动比较慢,,等到main再拉高的话,前面45ms多都是低。
有没有这样的解决方法?
是不是可以在low_initial中作。。。。
我去看下
关于MSP代码的执行流程中有这部分说明
http://www.ti.com/lit/an/slaa294a/slaa294a.pdf
看这里,关于如何在ccs和IAR中写这个low initial函数
http://processors.wiki.ti.com/index.php/MSP430_FAQ
非常感谢!