QP/C  8.0.0
Real-Time Embedded Framework
Loading...
Searching...
No Matches
qs_dummy.h
Go to the documentation of this file.
1//============================================================================
2// QP/C-Spy software tracing target-resident component
3//
4// Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
5//
6// Q u a n t u m L e a P s
7// ------------------------
8// Modern Embedded Software
9//
10//
11// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-QL-commercial
12//
13// The QP/C software is dual-licensed under the terms of the open-source GNU
14// General Public License (GPL) or under the terms of one of the closed-
15// source Quantum Leaps commercial licenses.
16//
17// Redistributions in source code must retain this top-level comment block.
18// Plagiarizing this software to sidestep the license obligations is illegal.
19//
20// NOTE:
21// The GPL does NOT permit the incorporation of this code into proprietary
22// programs. Please contact Quantum Leaps for commercial licensing options,
23// which expressly supersede the GPL and are designed explicitly for
24// closed-source distribution.
25//
26// Quantum Leaps contact information:
27// <www.state-machine.com/licensing>
28// <info@state-machine.com>
29//============================================================================
30#ifndef QS_DUMMY_H_
31#define QS_DUMMY_H_
32
33#ifdef Q_SPY
34 #error "Q_SPY must NOT be defined to include qs_dummy.h"
35#endif
36
37#ifdef Q_UTEST
38 #error "Q_UTEST must NOT be defined to include qs_dummy.h"
39#endif
40
41#define QS_INIT(arg_) ((uint8_t)1U)
42#define QS_EXIT() ((void)0)
43#define QS_DUMP() ((void)0)
44#define QS_GLB_FILTER(rec_) ((void)0)
45#define QS_LOC_FILTER(qsId_) ((void)0)
46
47#define QS_BEGIN_ID(rec_, qsId_) if (false) {
48#define QS_END() }
49#define QS_BEGIN_INCRIT(rec_, qsId_) if (false) {
50#define QS_END_INCRIT() }
51
52#define QS_I8(width_, data_) ((void)0)
53#define QS_U8(width_, data_) ((void)0)
54#define QS_I16(width_, data_) ((void)0)
55#define QS_U16(width_, data_) ((void)0)
56#define QS_I32(width_, data_) ((void)0)
57#define QS_U32(width_, data_) ((void)0)
58#define QS_F32(width_, data_) ((void)0)
59#define QS_F64(width_, data_) ((void)0)
60#define QS_I64(width_, data_) ((void)0)
61#define QS_U64(width_, data_) ((void)0)
62#define QS_ENUM(group_, value_) ((void)0)
63#define QS_STR(str_) ((void)0)
64#define QS_MEM(mem_, size_) ((void)0)
65#define QS_SIG(sig_, obj_) ((void)0)
66#define QS_OBJ(obj_) ((void)0)
67#define QS_FUN(fun_) ((void)0)
68
69#define QS_SIG_DICTIONARY(sig_, obj_) ((void)0)
70#define QS_OBJ_DICTIONARY(obj_) ((void)0)
71#define QS_OBJ_ARR_DICTIONARY(obj_, idx_) ((void)0)
72#define QS_FUN_DICTIONARY(fun_) ((void)0)
73#define QS_USR_DICTIONARY(rec_) ((void)0)
74#define QS_ENUM_DICTIONARY(value_, group_) ((void)0)
75#define QS_ASSERTION(module_, loc_, delay_) ((void)0)
76#define QS_FLUSH() ((void)0)
77
78#define QS_TEST_PROBE_DEF(fun_)
79#define QS_TEST_PROBE(code_)
80#define QS_TEST_PROBE_ID(id_, code_)
81#define QS_TEST_PAUSE() ((void)0)
82
83#define QS_OUTPUT() ((void)0)
84#define QS_RX_INPUT() ((void)0)
85#define QS_RX_PUT(b_) ((void)0)
86#define QS_ONLY(code_) ((void)0)
87
88//============================================================================
89// QS API used inside applications
90#ifndef QS_TIME_SIZE
91 typedef uint32_t QSTimeCtr;
92#elif (QS_TIME_SIZE == 2U)
93 typedef uint16_t QSTimeCtr;
94#else
95 typedef uint32_t QSTimeCtr;
96#endif
97
98void QS_initBuf(uint8_t * const sto, uint_fast32_t const stoSize);
99uint16_t QS_getByte(void);
100uint8_t const *QS_getBlock(uint16_t* const pNbytes);
101void QS_doOutput(void);
102uint8_t QS_onStartup(void const* arg);
103void QS_onCleanup(void);
104void QS_onFlush(void);
106
107void QS_rxInitBuf(uint8_t * const sto, uint16_t const stoSize);
108void QS_rxParse(void);
109
110//============================================================================
111// QS API used inside test fixtures
112#ifdef Q_UTEST
113
114#if (QS_FUN_PTR_SIZE == 2U)
115 typedef uint16_t QSFun;
116#elif (QS_FUN_PTR_SIZE == 4U)
117 typedef uint32_t QSFun;
118#elif (QS_FUN_PTR_SIZE == 8U)
119 typedef uint64_t QSFun;
120#endif
121
122struct QS_TProbe {
123 QSFun addr;
124 uint32_t data;
125 uint8_t idx;
126};
127
128void QS_onTestSetup(void);
131void QS_onTestPost(void const *sender, QActive *recipient,
132 QEvt const *e, bool status);
133void QS_onTestLoop(void);
134
135#endif // def Q_UTEST
136
137//============================================================================
138// interface used only for internal implementation, but not in applications
139#ifdef QP_IMPL
140 // predefined QS trace records
141 #define QS_BEGIN_PRE(rec_, qsId_) if (false) {
142 #define QS_END_PRE() }
143 #define QS_U8_PRE(data_) ((void)0)
144 #define QS_2U8_PRE(data1_, data2_) ((void)0)
145 #define QS_U16_PRE(data_) ((void)0)
146 #define QS_U32_PRE(data_) ((void)0)
147 #define QS_TIME_PRE() ((void)0)
148 #define QS_SIG_PRE(sig_) ((void)0)
149 #define QS_EVS_PRE(size_) ((void)0)
150 #define QS_OBJ_PRE(obj_) ((void)0)
151 #define QS_FUN_PRE(fun_) ((void)0)
152 #define QS_EQC_PRE(ctr_) ((void)0)
153 #define QS_MPC_PRE(ctr_) ((void)0)
154 #define QS_MPS_PRE(size_) ((void)0)
155 #define QS_TEC_PRE(ctr_) ((void)0)
156
157 #define QS_CRIT_STAT
158 #define QS_CRIT_ENTRY() ((void)0)
159 #define QS_CRIT_EXIT() ((void)0)
160
161 #define QS_MEM_SYS() ((void)0)
162 #define QS_MEM_APP() ((void)0)
163
164 #define QS_TR_CRIT_ENTRY() ((void)0)
165 #define QS_TR_CRIT_EXIT() ((void)0)
166 #define QS_TR_ISR_ENTRY(isrnest_, prio_) ((void)0)
167 #define QS_TR_ISR_EXIT(isrnest_, prio_) ((void)0)
168#endif // QP_IMPL
169
170#endif // QS_DUMMY_H_
void QS_doOutput(void)
void QS_onTestPost(void const *sender, QActive *recipient, QEvt const *e, bool status)
void QS_onCleanup(void)
void QS_onTestSetup(void)
void QS_rxParse(void)
uint32_t QSTimeCtr
Unsigned integer type for QS timestamps.
Definition qs_dummy.h:95
void QS_rxInitBuf(uint8_t *const sto, uint16_t const stoSize)
uint8_t const * QS_getBlock(uint16_t *const pNbytes)
void QS_onTestLoop(void)
QSTimeCtr QS_onGetTime(void)
Return the current timestamp for QS trace records.
void QS_onFlush(void)
Flush the QS output buffer.
uint8_t QS_onStartup(void const *arg)
void QS_onTestTeardown(void)
uint16_t QS_getByte(void)
void QS_onTestEvt(QEvt *e)
void QS_initBuf(uint8_t *const sto, uint_fast32_t const stoSize)
Active object class (based on the QHsm implementation strategy)
Definition qp.h:779
Event class.
Definition qp.h:131
QUTest Test-Probe attributes.
Definition qs_dummy.h:122
uint8_t idx
Definition qs_dummy.h:125
QSFun addr
Definition qs_dummy.h:123
uint32_t data
Definition qs_dummy.h:124