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.

RTOS: TI-RTOS version string

Other Parts Discussed in Thread: SYSBIOS

Tool/software: TI-RTOS

hello,

I would like to get the version identifier string of the TI-RTOS in use to print it on a serial terminale at application startup. I have in mind something like:

void main(void)

{

char *vs;

....

initUart();

vs = some_function_to_get_ti_rtos_version_string();

printf("TI-RTOS %s Operating system\r\n",vs);

...

}

The output on a terminal should be like:

TI-RTOS 6.33.05.46 Operating system

I could not find the relevant function, neither I'm sure the information is available at runtime.

Thanks in advance

Fabio