Open FFBoard
Open source force feedback firmware
ctickhook.cpp
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#include "tickhook.hpp"
41
42#if ( configUSE_TICK_HOOK == 1 )
43
44using namespace std;
45using namespace cpp_freertos;
46
47
48list<TickHook *> TickHook::Callbacks;
49
50
51TickHook::TickHook()
52 : Enabled(true)
53{
54}
55
56
58{
59 taskENTER_CRITICAL();
60 Callbacks.remove(this);
61 taskEXIT_CRITICAL();
62}
63
64
66{
67 taskENTER_CRITICAL();
68 Callbacks.push_front(this);
69 taskEXIT_CRITICAL();
70}
71
72
74{
75 taskENTER_CRITICAL();
76 Enabled = false;
77 taskEXIT_CRITICAL();
78}
79
80
82{
83 taskENTER_CRITICAL();
84 Enabled = true;
85 taskEXIT_CRITICAL();
86}
87
88
93{
94 for (list<TickHook *>::iterator it = TickHook::Callbacks.begin();
95 it != TickHook::Callbacks.end();
96 ++it) {
97
98 TickHook *tickHookObject = *it;
99
100 if (tickHookObject->Enabled){
101 tickHookObject->Run();
102 }
103 }
104}
105
106#endif
107
108
static std::list< TickHook * > Callbacks
Definition: tickhook.hpp:137
virtual void Run()=0
void vApplicationTickHook(void)
Definition: ctickhook.cpp:92