FreeRTOS C++ Wrappers  1.6.0
C++ interface to FreeRTOS
critical.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 CRITICAL_HPP_
41 #define CRITICAL_HPP_
42 
43 #include "FreeRTOS.h"
44 #include "task.h"
45 
46 
47 namespace cpp_freertos {
48 
49 
55 
57  //
58  // Public API
59  // Available from anywhere.
60  //
62  public:
66  static inline void Enter()
67  {
68  taskENTER_CRITICAL();
69  }
70 
74  static inline void Exit()
75  {
76  taskEXIT_CRITICAL();
77  }
78 
90  static inline BaseType_t EnterFromISR()
91  {
92  return taskENTER_CRITICAL_FROM_ISR();
93  }
94 
104  static inline void ExitFromISR(BaseType_t savedInterruptStatus)
105  {
106  taskEXIT_CRITICAL_FROM_ISR(savedInterruptStatus);
107  }
108 
112  static inline void DisableInterrupts()
113  {
114  taskDISABLE_INTERRUPTS();
115  }
116 
120  static inline void EnableInterrupts()
121  {
122  taskENABLE_INTERRUPTS();
123  }
124 
128  static inline void SuspendScheduler()
129  {
130  vTaskSuspendAll();
131  }
132 
136  static inline void ResumeScheduler()
137  {
138  xTaskResumeAll();
139  }
140 };
141 
142 
143 }
144 #endif
static void DisableInterrupts()
Definition: critical.hpp:112
static BaseType_t EnterFromISR()
Definition: critical.hpp:90
static void SuspendScheduler()
Definition: critical.hpp:128
static void EnableInterrupts()
Definition: critical.hpp:120
static void ExitFromISR(BaseType_t savedInterruptStatus)
Definition: critical.hpp:104