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