Tool/software: TI-RTOS
Hello,
I have an EK-TM4C1294 development board and use TI-RTOS v2.16.1.14.
I get data through the UART interface and save the current time with the overridden time() function.
time_t t32 = time (NULL);
System_printf ("%s", ctime (&t32));
But I also need the time in milliseconds. How do I get the time in milliseconds?