FreeRTOS Addons
Loading...
Searching...
No Matches
critical.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 CRITICAL_HPP_
43#define CRITICAL_HPP_
44
45#include "FreeRTOS.h"
46#include "task.h"
47
48
49namespace cpp_freertos {
50
51
57
59 //
60 // Public API
61 // Available from anywhere.
62 //
64 public:
68 static inline void Enter()
69 {
70 _taskENTER_CRITICAL();
71 }
72
76 static inline void Exit()
77 {
78 _taskEXIT_CRITICAL();
79 }
80
92 static inline BaseType_t EnterFromISR()
93 {
94 return taskENTER_CRITICAL_FROM_ISR();
95 }
96
106 static inline void ExitFromISR(BaseType_t savedInterruptStatus)
107 {
108 taskEXIT_CRITICAL_FROM_ISR(savedInterruptStatus);
109 }
110
114 static inline void DisableInterrupts()
115 {
116 taskDISABLE_INTERRUPTS();
117 }
118
122 static inline void EnableInterrupts()
123 {
124 taskENABLE_INTERRUPTS();
125 }
126
130 static inline void SuspendScheduler()
131 {
132 vTaskSuspendAll();
133 }
134
138 static inline void ResumeScheduler()
139 {
140 xTaskResumeAll();
141 }
142};
143
144
145}
146#endif
Definition: critical.hpp:56
static void SuspendScheduler()
Definition: critical.hpp:130
static void ResumeScheduler()
Definition: critical.hpp:138
static void Exit()
Definition: critical.hpp:76
static void DisableInterrupts()
Definition: critical.hpp:114
static void ExitFromISR(BaseType_t savedInterruptStatus)
Definition: critical.hpp:106
static BaseType_t EnterFromISR()
Definition: critical.hpp:92
static void Enter()
Definition: critical.hpp:68
static void EnableInterrupts()
Definition: critical.hpp:122
Definition: condition_variable.hpp:57