Line |
Branch |
Exec |
Source |
1 |
|
|
/** |
2 |
|
|
* @file demo_realtime_check.cpp |
3 |
|
|
* @author Maximilien Naveau (maximilien.naveau@gmail.com) |
4 |
|
|
* license License BSD-3-Clause |
5 |
|
|
* @copyright Copyright (c) 2019, New York University and Max Planck |
6 |
|
|
* Gesellschaft. |
7 |
|
|
* @date 2019-05-22 |
8 |
|
|
* |
9 |
|
|
* @brief Check the real time capbilites of a loop. |
10 |
|
|
*/ |
11 |
|
|
#include "real_time_tools/realtime_check.hpp" |
12 |
|
|
#include "real_time_tools/thread.hpp" |
13 |
|
|
#include "real_time_tools/timer.hpp" |
14 |
|
|
|
15 |
|
|
/*! Real time thread that measure the spinning frequency and do some basic |
16 |
|
|
* operation */ |
17 |
|
✗ |
THREAD_FUNCTION_RETURN_TYPE thread_function(void*) |
18 |
|
|
{ |
19 |
|
✗ |
double freq = 1000.0; // 1kz |
20 |
|
✗ |
double switch_freq = 990; |
21 |
|
✗ |
real_time_tools::RealTimeCheck rc(freq, switch_freq); |
22 |
|
✗ |
int nb_iteration = 10000; |
23 |
|
✗ |
int a = 0; |
24 |
|
|
|
25 |
|
✗ |
printf("sleeping time is %f seconds", 1.0 / freq); |
26 |
|
|
|
27 |
|
✗ |
for (int i = 0; i < nb_iteration; ++i) |
28 |
|
|
{ |
29 |
|
✗ |
rc.tick(); |
30 |
|
✗ |
a++; |
31 |
|
✗ |
real_time_tools::Timer::sleep_sec(1.0 / |
32 |
|
|
freq); // microseconds, so in Ghz |
33 |
|
|
} |
34 |
|
|
|
35 |
|
✗ |
printf("\n"); |
36 |
|
✗ |
rc.print(); |
37 |
|
✗ |
printf("\n"); |
38 |
|
|
|
39 |
|
✗ |
return THREAD_FUNCTION_RETURN_VALUE; |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
/*! Create a real time thread and measure the frequency of the thread. */ |
43 |
|
✗ |
int main(int, char* []) |
44 |
|
|
{ |
45 |
|
✗ |
real_time_tools::RealTimeThread thread; |
46 |
|
✗ |
thread.create_realtime_thread(thread_function); |
47 |
|
✗ |
thread.join(); |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
/** |
51 |
|
|
* \example demo_realtime_check.cpp |
52 |
|
|
* This demos has for purpose to present the class |
53 |
|
|
* real_time_tools::RealTimeCheck. This class |
54 |
|
|
* measures the frequency of a loop and compares it with a threshold frequency. |
55 |
|
|
* As demonstrated below, the class takes as input the desired frequency and |
56 |
|
|
* the threshold frequency. |
57 |
|
|
* |
58 |
|
|
* In order to enable the measurement of the your loop one need to call the |
59 |
|
|
* real_time_tools::RealTimeCheck::tick() function. |
60 |
|
|
* |
61 |
|
|
* Finally the statistical results can be displayed via the |
62 |
|
|
* real_time_tools::RealTimeCheck::print() methods. |
63 |
|
|
*/ |
64 |
|
|
|