Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Temperature Control
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
RBComb Temperature Control
Commits
2d1755b9
Commit
2d1755b9
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added a timer
parent
fb2a43ba
Branches
step_test_cto
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
firmware/drivers/ptimer/ptimer.cpp
+11
-0
11 additions, 0 deletions
firmware/drivers/ptimer/ptimer.cpp
firmware/drivers/ptimer/ptimer.hpp
+11
-0
11 additions, 0 deletions
firmware/drivers/ptimer/ptimer.hpp
with
22 additions
and
0 deletions
firmware/drivers/ptimer/ptimer.cpp
0 → 100644
+
11
−
0
View file @
2d1755b9
#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_
);;
}
This diff is collapsed.
Click to expand it.
firmware/drivers/ptimer/ptimer.hpp
0 → 100644
+
11
−
0
View file @
2d1755b9
#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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment