FreeRTOS Addons
Loading...
Searching...
No Matches
ticks.hpp
1/****************************************************************************
2 *
3 * Copyright (c) 2017, Michael Becker (michael.f.becker@gmail.com)
4 *
5 * This file is part of the FreeRTOS Add-ons project.
6 *
7 * Source Code:
8 * https://github.com/michaelbecker/freertos-addons
9 *
10 * Project Page:
11 * http://michaelbecker.github.io/freertos-addons/
12 *
13 * On-line Documentation:
14 * http://michaelbecker.github.io/freertos-addons/docs/html/index.html
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files
18 * (the "Software"), to deal in the Software without restriction, including
19 * without limitation the rights to use, copy, modify, merge, publish,
20 * distribute, sublicense, and/or sell copies of the Software, and to
21 * permit persons to whom the Software is furnished to do so,subject to the
22 * following conditions:
23 *
24 * + The above copyright notice and this permission notice shall be included
25 * in all copies or substantial portions of the Software.
26 * + Credit is appreciated, but not required, if you find this project
27 * useful enough to include in your application, product, device, etc.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
30 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 *
37 ***************************************************************************/
38
39
40#include "freertos-config.h"
41
42#ifndef TICKS_HPP_
43#define TICKS_HPP_
44
45#include "FreeRTOS.h"
46#include "task.h"
47
48
49namespace cpp_freertos {
50
51
55class Ticks {
56
57 public:
63 static inline TickType_t GetTicks()
64 {
65 return xTaskGetTickCount();
66 }
67
73 static inline TickType_t GetTicksFromISR()
74 {
75 return xTaskGetTickCountFromISR();
76 }
77
84 static inline TickType_t TicksToMs(TickType_t ticks)
85 {
86 return ticks * portTICK_PERIOD_MS;
87 }
88
95 static inline TickType_t MsToTicks(TickType_t milliseconds)
96 {
97 return milliseconds / portTICK_PERIOD_MS;
98 }
99
106 static inline TickType_t SecondsToTicks(TickType_t seconds)
107 {
108 return (seconds * 1000) / portTICK_PERIOD_MS;
109 }
110};
111
112
113}
114#endif
115
Definition: ticks.hpp:55
static TickType_t MsToTicks(TickType_t milliseconds)
Definition: ticks.hpp:95
static TickType_t SecondsToTicks(TickType_t seconds)
Definition: ticks.hpp:106
static TickType_t GetTicksFromISR()
Definition: ticks.hpp:73
static TickType_t GetTicks()
Definition: ticks.hpp:63
static TickType_t TicksToMs(TickType_t ticks)
Definition: ticks.hpp:84
Definition: condition_variable.hpp:57