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
您好!
我想获取正在使用的 TI-RTOS 的版本标识符字符串、以便在应用启动时在串行终端上打印该字符串。 我想到的是:
void main (void)
{
char * vs;
…
initUart();
Vs = sout_function_TO_get_ti_rtos_version_string ();
printf ("TI-RTOS %s 操作系统\r\n"、Vs);
(笑声)
}
终端上的输出应如下所示:
TI-RTOS 6.33.05.46操作系统
我找不到相关函数、也不确定运行时是否提供相关信息。
提前感谢
Fabio