Line |
Branch |
Exec |
Source |
1 |
|
|
/** |
2 |
|
|
* @file demo_realtime_strict_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 |
|
|
|
12 |
|
|
#include "real_time_tools/realtime_check.hpp" |
13 |
|
|
#include "real_time_tools/thread.hpp" |
14 |
|
|
|
15 |
|
|
/** @brief define an alias for the clock */ |
16 |
|
|
typedef std::chrono::high_resolution_clock my_clock; |
17 |
|
|
|
18 |
|
|
/** @brief this function is executed in a real_time_thread. */ |
19 |
|
✗ |
THREAD_FUNCTION_RETURN_TYPE thread_function(void*) |
20 |
|
|
{ |
21 |
|
✗ |
double freq = 1000.0; // 1kz |
22 |
|
✗ |
double switch_freq = 990; |
23 |
|
✗ |
int nb_iteration = 1000; |
24 |
|
|
|
25 |
|
|
unsigned period = |
26 |
|
✗ |
static_cast<unsigned>(round((1.0 / freq) * pow(10.0, 9.0))); |
27 |
|
✗ |
my_clock::duration clock_period(period); |
28 |
|
✗ |
real_time_tools::RealTimeCheck rc(freq, switch_freq); |
29 |
|
✗ |
int a = 0; |
30 |
|
✗ |
my_clock::time_point start, stop, mid; |
31 |
|
|
my_clock::duration sleep_duration_diff; |
32 |
|
|
struct timespec sleep_duration, out_sleep; |
33 |
|
|
|
34 |
|
✗ |
printf("reference period is %ld\n", clock_period.count()); |
35 |
|
|
|
36 |
|
✗ |
for (int i = 0; i < nb_iteration; ++i) |
37 |
|
|
{ |
38 |
|
✗ |
start = my_clock::now(); |
39 |
|
|
|
40 |
|
✗ |
rc.tick(); |
41 |
|
|
|
42 |
|
✗ |
a++; |
43 |
|
|
// printf("%d %d", sleep_duration.tv_nsec, out_sleep.tv_nsec); |
44 |
|
|
// printf("%ld ; %ld ; ", sleep_duration.tv_nsec, |
45 |
|
|
// sleep_duration_diff.count()); printf("sleeping time is %ld \n", |
46 |
|
|
// sleep_duration.tv_nsec); |
47 |
|
|
|
48 |
|
✗ |
mid = my_clock::now(); |
49 |
|
✗ |
sleep_duration.tv_nsec = |
50 |
|
✗ |
(clock_period - sleep_duration_diff - (mid - start)).count(); |
51 |
|
|
|
52 |
|
✗ |
nanosleep(&sleep_duration, &out_sleep); // microseconds, so in Ghz |
53 |
|
|
|
54 |
|
✗ |
stop = my_clock::now(); |
55 |
|
✗ |
sleep_duration_diff = my_clock::duration( |
56 |
|
✗ |
(unsigned)((stop - mid) - |
57 |
|
✗ |
my_clock::duration(sleep_duration.tv_nsec)) |
58 |
|
✗ |
.count()); |
59 |
|
|
} |
60 |
|
|
|
61 |
|
✗ |
printf("\n"); |
62 |
|
✗ |
rc.print(); |
63 |
|
✗ |
printf("\n"); |
64 |
|
|
|
65 |
|
✗ |
return THREAD_FUNCTION_RETURN_VALUE; |
66 |
|
|
} |
67 |
|
|
|
68 |
|
|
/** @brief This demos show the used of the strict check of the real time loop.*/ |
69 |
|
✗ |
int main(int, char* []) |
70 |
|
|
{ |
71 |
|
✗ |
real_time_tools::RealTimeThread thread; |
72 |
|
✗ |
thread.create_realtime_thread(thread_function); |
73 |
|
✗ |
thread.join(); |
74 |
|
|
} |
75 |
|
|
|
76 |
|
|
/** |
77 |
|
|
* \example demo_realtime_strict_check.cpp |
78 |
|
|
* |
79 |
|
|
* This demos has for purpose to present the class |
80 |
|
|
* real_time_tools::RealTimeCheck. This class |
81 |
|
|
* measures the frequency of a loop and compares it with a threshold frequency. |
82 |
|
|
* As demonstrated below, the class takes as input the desired frequency and |
83 |
|
|
* the threshold frequency. |
84 |
|
|
* |
85 |
|
|
* In order to enable the measurement of the your loop one need to call the |
86 |
|
|
* real_time_tools::RealTimeCheck::tick() function. |
87 |
|
|
* |
88 |
|
|
* Finally the statistical results can be displayed via the |
89 |
|
|
* real_time_tools::RealTimeCheck::print() methods. |
90 |
|
|
* |
91 |
|
|
* The difference with the demo_realtime_check.cpp |
92 |
|
|
* is that we measure the sleeping time as well. |
93 |
|
|
*/ |
94 |
|
|
|