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.

How to get the current time ?

Other Parts Discussed in Thread: SYSBIOS

Hello,

I use the sysbios and the board LM3S9D96,

Does the sysbios support the library to get the current time of unit seconds?

It would be the same as the Linux C library like below example:

#include <time.h>

main()

{

     time_t  timestamp;

     int   seconds;

     seconds = time(&timestamp);

}

Thanks