Open FFBoard
Open source force feedback firmware
timer.hpp
Go to the documentation of this file.
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#ifndef TIMER_HPP_
41#define TIMER_HPP_
42
43
51#ifndef CPP_FREERTOS_NO_EXCEPTIONS
52#include <exception>
53#include <string>
54#include <cstdio>
55#ifdef CPP_FREERTOS_NO_CPP_STRINGS
56#error "FreeRTOS-Addons require C++ Strings if you are using exceptions"
57#endif
58#endif
59#include "FreeRTOS.h"
60#include "timers.h"
61
62
63namespace cpp_freertos {
64
65
66#ifndef CPP_FREERTOS_NO_EXCEPTIONS
70class TimerCreateException : public std::exception {
71
72 public:
77 {
78 sprintf(errorString, "Timer Constructor Failed");
79 }
80
85 virtual const char *what() const throw()
86 {
87 return errorString;
88 }
89
90 private:
94 char errorString[40];
95};
96#endif
97
98
107class Timer {
108
110 //
111 // Public API
112 //
114 public:
127 Timer( const char * const TimerName,
128 TickType_t PeriodInTicks,
129 bool Periodic = true
130 );
131
143 Timer( TickType_t PeriodInTicks,
144 bool Periodic = true
145 );
146
150 virtual ~Timer();
151
157 bool IsActive();
158
167 bool Start(TickType_t CmdTimeout = portMAX_DELAY);
168
177 bool StartFromISR(BaseType_t *pxHigherPriorityTaskWoken);
178
187 bool Stop(TickType_t CmdTimeout = portMAX_DELAY);
188
197 bool StopFromISR(BaseType_t *pxHigherPriorityTaskWoken);
198
207 bool Reset(TickType_t CmdTimeout = portMAX_DELAY);
208
217 bool ResetFromISR(BaseType_t *pxHigherPriorityTaskWoken);
218
228 bool SetPeriod( TickType_t NewPeriod,
229 TickType_t CmdTimeout = portMAX_DELAY);
230
240 bool SetPeriodFromISR( TickType_t NewPeriod,
241 BaseType_t *pxHigherPriorityTaskWoken);
242
243#if (INCLUDE_xTimerGetTimerDaemonTaskHandle == 1)
250 static TaskHandle_t GetTimerDaemonHandle();
251#endif
252
254 //
255 // Protected API
256 // Available from inside your Thread implementation.
257 // You should make sure that you are only calling these methods
258 // from within your Run() method, or that your Run() method is on the
259 // callstack.
260 //
262 protected:
267 virtual void Run() = 0;
268
270 //
271 // Private API
272 // The internals of this wrapper class.
273 //
275 private:
279 TimerHandle_t handle;
280
287 static void TimerCallbackFunctionAdapter(TimerHandle_t xTimer);
288};
289
290
291}
292#endif
virtual const char * what() const
Definition: timer.hpp:85
bool SetPeriodFromISR(TickType_t NewPeriod, BaseType_t *pxHigherPriorityTaskWoken)
Definition: ctimer.cpp:146
virtual ~Timer()
Definition: ctimer.cpp:87
bool Stop(TickType_t CmdTimeout=portMAX_DELAY)
Definition: ctimer.cpp:112
bool Start(TickType_t CmdTimeout=portMAX_DELAY)
Definition: ctimer.cpp:99
bool StopFromISR(BaseType_t *pxHigherPriorityTaskWoken)
Definition: ctimer.cpp:118
TimerHandle_t handle
Definition: timer.hpp:279
static void TimerCallbackFunctionAdapter(TimerHandle_t xTimer)
Definition: ctimer.cpp:165
bool Reset(TickType_t CmdTimeout=portMAX_DELAY)
Definition: ctimer.cpp:125
bool SetPeriod(TickType_t NewPeriod, TickType_t CmdTimeout=portMAX_DELAY)
Definition: ctimer.cpp:138
Timer(const char *const TimerName, TickType_t PeriodInTicks, bool Periodic=true)
Definition: ctimer.cpp:46
bool ResetFromISR(BaseType_t *pxHigherPriorityTaskWoken)
Definition: ctimer.cpp:131
virtual void Run()=0
bool StartFromISR(BaseType_t *pxHigherPriorityTaskWoken)
Definition: ctimer.cpp:105
static TaskHandle_t GetTimerDaemonHandle()
Definition: ctimer.cpp:157