Skip to content
Snippets Groups Projects
Commit 2d1755b9 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added a timer

parent fb2a43ba
Branches step_test_cto
No related tags found
No related merge requests found
#include <ptimer.hpp>
unsigned long PTimer::start_t_ = 0;
void PTimer::start(){
start_t_ = micros();
}
unsigned long PTimer::elapsed(){
return static_cast<unsigned long>(micros - start_t_);;
}
#ifndef PTIMER_HPP_INCLUDED
#define PTIMER_HPP_INCLUDED
class PTimer{
public:
static void start();
//returns the elapsed time in microseconds
static unsigned long elapsed() const;
private:
static unsigned long start_t_;
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment