What's the preferred way to get a system time (like millis() on Arduino)

Topics about the Software of Revolution Pi
Post Reply
User avatar
KarlZeilhofer
Posts: 63
Joined: 12 Mar 2017, 04:21
Answers: 0
Location: Oberösterreich, Pettenbach
Contact:

What's the preferred way to get a system time (like millis() on Arduino)

Post by KarlZeilhofer »

Hi,

since I've never wrote programms for realtime systems on linux, I wonder, how I get a precise time?

On Arduino for example I use millis(), which returns the milli seconds since start of the programm.

Is <time.h> with clock() and CLOCKS_PER_SECOND the correct way?

Code: Select all

#include <time.h>
...
int millis(){
	static clock_t start;

	static bool firstRun=true;
	if(firstRun){
		firstRun = false;
		start = clock();
	}

	clock_t now = clock();
	clock_t diff = now-start;

	double t = (double)diff/CLOCKS_PER_SEC;

	return t*1000;
}
Kind Regards, Karl
User avatar
KarlZeilhofer
Posts: 63
Joined: 12 Mar 2017, 04:21
Answers: 0
Location: Oberösterreich, Pettenbach
Contact:

Re: What's the preferred way to get a system time (like millis() on Arduino)

Post by KarlZeilhofer »

I just tested a minimal example on the RevPi, but clocks() from <time.h> seems to return a wrong number, see screenshot.
The execution, according to date needed about 45s, but the example code just counted 30s.
Has this to do with the real time kernel? What else can be used?

You can try this code also on tutorialspoint.com: https://goo.gl/YszZBX
There the timing seems to be okay.

What else can be used to get a proper time?
Attachments
2017-03-21_002.png
2017-03-21_002.png (103.1 KiB) Viewed 3484 times
Post Reply