QP/C++ 6.9.3
qs_dummy.hpp
Go to the documentation of this file.
1 
40 #ifndef QS_DUMMY_HPP
41 #define QS_DUMMY_HPP
42 
43 #ifdef Q_SPY
44  #error "Q_SPY must NOT be defined to include qs_dummy.hpp"
45 #endif
46 
47 #define QS_INIT(arg_) (true)
48 #define QS_EXIT() static_cast<void>(0)
49 #define QS_DUMP() static_cast<void>(0)
50 #define QS_GLB_FILTER(rec_) static_cast<void>(0)
51 #define QS_LOC_FILTER(qs_id_) static_cast<void>(0)
52 
53 #define QS_GET_BYTE(pByte_) (0xFFFFU)
54 #define QS_GET_BLOCK(pSize_) (nullptr)
55 
56 #define QS_BEGIN_ID(rec_, qs_id_) if (false) {
57 #define QS_END() }
58 #define QS_BEGIN_NOCRIT(rec_, qs_id_) if (false) {
59 #define QS_END_NOCRIT() }
60 
61 #define QS_I8(width_, data_) static_cast<void>(0)
62 #define QS_U8(width_, data_) static_cast<void>(0)
63 #define QS_I16(width_, data_) static_cast<void>(0)
64 #define QS_U16(width_, data_) static_cast<void>(0)
65 #define QS_I32(width_, data_) static_cast<void>(0)
66 #define QS_U32(width_, data_) static_cast<void>(0)
67 #define QS_F32(width_, data_) static_cast<void>(0)
68 #define QS_F64(width_, data_) static_cast<void>(0)
69 #define QS_U64(width_, data_) static_cast<void>(0)
70 #define QS_STR(str_) static_cast<void>(0)
71 #define QS_MEM(mem_, size_) static_cast<void>(0)
72 #define QS_SIG(sig_, obj_) static_cast<void>(0)
73 #define QS_OBJ(obj_) static_cast<void>(0)
74 #define QS_FUN(fun_) static_cast<void>(0)
75 
76 #define QS_SIG_DICTIONARY(sig_, obj_) static_cast<void>(0)
77 #define QS_OBJ_DICTIONARY(obj_) static_cast<void>(0)
78 #define QS_FUN_DICTIONARY(fun_) static_cast<void>(0)
79 #define QS_USR_DICTIONARY(rec_) static_cast<void>(0)
80 #define QS_ASSERTION(module_, loc_, delay_) static_cast<void>(0)
81 #define QS_FLUSH() static_cast<void>(0)
82 
83 #define QS_TEST_PROBE_DEF(fun_)
84 #define QS_TEST_PROBE(code_)
85 #define QS_TEST_PROBE_ID(id_, code_)
86 #define QS_TEST_PAUSE() static_cast<void>(0)
87 
88 #define QS_OUTPUT() static_cast<void>(0)
89 #define QS_RX_INPUT() static_cast<void>(0)
90 
91 //****************************************************************************
92 // internal QS macros used only in the QP components
93 
94 #ifdef QP_IMPL
95  // predefined QS trace records
96  #define QS_BEGIN_PRE_(rec_, qs_id_) if (false) {
97  #define QS_END_PRE_() }
98  #define QS_BEGIN_NOCRIT_PRE_(rec_, qs_id_) if (false) {
99  #define QS_END_NOCRIT_PRE_() }
100  #define QS_U8_PRE_(data_) static_cast<void>(0)
101  #define QS_2U8_PRE_(data1_, data2_) static_cast<void>(0)
102  #define QS_U16_PRE_(data_) static_cast<void>(0)
103  #define QS_U32_PRE_(data_) static_cast<void>(0)
104  #define QS_TIME_PRE_() static_cast<void>(0)
105  #define QS_SIG_PRE_(sig_) static_cast<void>(0)
106  #define QS_EVS_PRE_(size_) static_cast<void>(0)
107  #define QS_OBJ_PRE_(obj_) static_cast<void>(0)
108  #define QS_FUN_PRE_(fun_) static_cast<void>(0)
109  #define QS_EQC_PRE_(ctr_) static_cast<void>(0)
110  #define QS_MPC_PRE_(ctr_) static_cast<void>(0)
111  #define QS_MPS_PRE_(size_) static_cast<void>(0)
112  #define QS_TEC_PRE_(ctr_) static_cast<void>(0)
113 
114  #define QS_CRIT_STAT_
115  #define QF_QS_CRIT_ENTRY() static_cast<void>(0)
116  #define QF_QS_CRIT_EXIT() static_cast<void>(0)
117  #define QF_QS_ISR_ENTRY(isrnest_, prio_) static_cast<void>(0)
118  #define QF_QS_ISR_EXIT(isrnest_, prio_) static_cast<void>(0)
119  #define QF_QS_ACTION(act_) static_cast<void>(0)
120 #endif // QP_IMPL
121 
122 #endif // QS_DUMMY_HPP
123