QP/C++ 6.9.3
qxk_port.hpp
Go to the documentation of this file.
1 
39 #ifndef QXK_PORT_HPP
40 #define QXK_PORT_HPP
41 
42 //lint -save -e1960 MISRA-C++:2008 Rule 7-3-1, Global declaration
43 
44 //****************************************************************************
47 #define QXK_ISR_CONTEXT_() (getSR() != 0U)
48 
50 #define QXK_CONTEXT_SWITCH_() (trigSWI())
51 
52 //****************************************************************************
54 #define QXK_ON_CONTEXT_SW 1
55 
56 //****************************************************************************
57 // QXK interrupt entry and exit
58 
65 #define QXK_ISR_ENTRY() do { \
66  ++QXK_attr_.intNest; \
67 } while (false)
68 
69 
76 #define QXK_ISR_EXIT() do { \
77  --QXK_attr_.intNest; \
78  if (QXK_attr_.intNest == 0U) { \
79  if (QXK_sched_() != 0U) { \
80  QXK_activate_(); \
81  } \
82  } \
83  else { \
84  Q_ERROR(); \
85  } \
86 } while (false)
87 
88 extern "C" {
89 
91 void trigSWI(void);
92 
93 } // extern "C"
94 
95 //lint -restore
96 
97 #include "qxk.hpp" // QXK platform-independent public interface
98 
99 #endif // QXK_PORT_HPP
unsigned long int uint32_t
exact-width 32-bit unsigned int
Definition: 16bit/stdint.h:31
QXK/C++ preemptive extended (blocking) kernel, platform-independent public interface.
std::uint32_t getSR(void)
void trigSWI(void)