44 #error "Q_SPY must be defined to include qs.h"
254 #define QS_TIME_SIZE 4U
257 #if (QS_TIME_SIZE == 1U)
259 #define QS_TIME_PRE_() (QS_u8_raw_(QS_onGetTime()))
260 #elif (QS_TIME_SIZE == 2U)
262 #define QS_TIME_PRE_() (QS_u16_raw_(QS_onGetTime()))
263 #elif (QS_TIME_SIZE == 4U)
270 #define QS_TIME_PRE_() (QS_u32_raw_(QS_onGetTime()))
272 #error "QS_TIME_SIZE defined incorrectly, expected 1, 2, or 4"
346 #define QS_EOD ((uint16_t)0xFFFFU)
424 #define QS_INIT(arg_) (QS_onStartup(arg_))
433 #define QS_EXIT() (QS_onCleanup())
443 #define QS_FLUSH() (QS_onFlush())
454 #define QS_GLB_FILTER(rec_) (QS_glbFilter_((int_fast16_t)(rec_)))
465 #define QS_LOC_FILTER(qs_id_) (QS_locFilter_((int_fast16_t)(qs_id_)))
474 #ifndef QS_CRIT_STAT_TYPE
475 #define QS_CRIT_STAT_
476 #define QS_CRIT_E_() QS_CRIT_ENTRY(dummy)
477 #define QS_CRIT_X_() QS_CRIT_EXIT(dummy); QS_REC_DONE()
479 #define QS_CRIT_STAT_ QS_CRIT_STAT_TYPE critStat_;
480 #define QS_CRIT_E_() QS_CRIT_ENTRY(critStat_)
481 #define QS_CRIT_X_() QS_CRIT_EXIT(critStat_); QS_REC_DONE()
486 #ifndef QF_CRIT_STAT_TYPE
498 #define QS_CRIT_STAT_
510 #define QS_CRIT_E_() QF_CRIT_ENTRY(dummy)
522 #define QS_CRIT_X_() QF_CRIT_EXIT(dummy); QS_REC_DONE()
524 #elif (!defined QS_CRIT_STAT_)
526 #define QS_CRIT_STAT_ QF_CRIT_STAT_TYPE critStat_;
527 #define QS_CRIT_E_() QF_CRIT_ENTRY(critStat_)
528 #define QS_CRIT_X_() QF_CRIT_EXIT(critStat_); QS_REC_DONE()
539 #define QS_BEGIN_NOCRIT(rec_, qs_id_) \
540 if (QS_GLB_CHECK_(rec_) && QS_LOC_CHECK_(qs_id_)) { \
541 QS_beginRec_((uint_fast8_t)(rec_)); \
545 #define QS_END_NOCRIT() } \
551 #define QS_REC_DONE() ((void)0)
555 #define QS_GLB_CHECK_(rec_) \
556 (((uint_fast8_t)QS_priv_.glbFilter[(uint_fast8_t)(rec_) >> 3U] \
557 & ((uint_fast8_t)1U << ((uint_fast8_t)(rec_) & 7U))) != 0U)
560 #define QS_LOC_CHECK_(qs_id_) \
561 (((uint_fast8_t)QS_priv_.locFilter[(uint_fast8_t)(qs_id_) >> 3U] \
562 & ((uint_fast8_t)1U << ((uint_fast8_t)(qs_id_) & 7U))) != 0U)
574 #define QS_BEGIN_ID(rec_, qs_id_) \
575 if (QS_GLB_CHECK_(rec_) && QS_LOC_CHECK_(qs_id_)) { \
578 QS_beginRec_((uint_fast8_t)(rec_)); \
616 #define QS_I8(width_, data_) \
617 (QS_u8_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_I8_T, (data_)))
620 #define QS_U8(width_, data_) \
621 (QS_u8_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_U8_T, (data_)))
624 #define QS_I16(width_, data_) \
625 (QS_u16_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_I16_T, (data_)))
628 #define QS_U16(width_, data_) \
629 (QS_u16_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_U16_T, (data_)))
632 #define QS_I32(width_, data_) \
633 (QS_u32_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_I32_T, (data_)))
636 #define QS_U32(width_, data_) \
637 (QS_u32_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_U32_T, (data_)))
640 #define QS_F32(width_, data_) \
641 (QS_f32_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_F32_T, (data_)))
644 #define QS_F64(width_, data_) \
645 (QS_f64_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_F64_T, (data_)))
648 #define QS_I64(width_, data_) \
649 (QS_u64_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_I64_T, (data_)))
652 #define QS_U64(width_, data_) \
653 (QS_u64_fmt_((uint8_t)(((width_) << 4)) | (uint8_t)QS_U64_T, (data_)))
656 #define QS_STR(str_) (QS_str_fmt_((str_)))
659 #define QS_MEM(mem_, size_) (QS_mem_fmt_((mem_), (size_)))
662 #if (QS_OBJ_PTR_SIZE == 1U)
663 #define QS_OBJ(obj_) (QS_u8_fmt_(QS_OBJ_T, (uint8_t)(obj_)))
664 #elif (QS_OBJ_PTR_SIZE == 2U)
665 #define QS_OBJ(obj_) (QS_u16_fmt_(QS_OBJ_T, (uint16_t)(obj_)))
666 #elif (QS_OBJ_PTR_SIZE == 4U)
667 #define QS_OBJ(obj_) (QS_u32_fmt_(QS_OBJ_T, (uint32_t)(obj_)))
668 #elif (QS_OBJ_PTR_SIZE == 8U)
669 #define QS_OBJ(obj_) (QS_u64_fmt_(QS_OBJ_T, (uint64_t)(obj_)))
672 #define QS_OBJ(obj_) (QS_u32_fmt_(QS_OBJ_T, (uint32_t)(obj_)))
676 #if (QS_FUN_PTR_SIZE == 1U)
677 #define QS_FUN(fun_) (QS_u8_fmt_(QS_FUN_T, (uint8_t)(fun_)))
678 #elif (QS_FUN_PTR_SIZE == 2U)
679 #define QS_FUN(fun_) (QS_u16_fmt_(QS_FUN_T, (uint16_t)(fun_)))
680 #elif (QS_FUN_PTR_SIZE == 4U)
681 #define QS_FUN(fun_) (QS_u32_fmt_(QS_FUN_T, (uint32_t)(fun_)))
682 #elif (QS_FUN_PTR_SIZE == 8U)
683 #define QS_FUN(fun_) (QS_u64_fmt_(QS_FUN_T, (uint64_t)(fun_)))
686 #define QS_FUN(fun_) (QS_u32_fmt_(QS_FUN_T, (uint32_t)(fun_)))
689 #if (Q_SIGNAL_SIZE == 1)
691 #define QS_SIG(sig_, obj_) \
692 QS_u8_fmt_(QS_SIG_T, (sig_)); \
695 #elif (Q_SIGNAL_SIZE == 2)
697 #define QS_SIG(sig_, obj_) \
698 QS_u16_fmt_(QS_SIG_T, (sig_)); \
701 #elif (Q_SIGNAL_SIZE == 4)
703 #define QS_SIG(sig_, obj_) \
704 QS_u32_fmt_(QS_SIG_T, (sig_)); \
711 #define QS_SIG(sig_, obj_) \
712 QS_u16_fmt_(QS_SIG_T, (sig_)); \
762 #define QS_SIG_DICTIONARY(sig_, obj_) \
763 (QS_sig_dict_pre_((sig_), (obj_), #sig_))
779 #define QS_OBJ_DICTIONARY(obj_) \
780 (QS_obj_dict_pre_((obj_), #obj_))
795 #define QS_FUN_DICTIONARY(fun_) \
796 (QS_fun_dict_pre_((void (*)(void))(fun_), #fun_))
804 #define QS_USR_DICTIONARY(rec_) \
805 (QS_usr_dict_pre_((rec_), #rec_))
821 char_t
const *
const name);
849 #define QF_QS_ACTION(act_) (act_)
873 uint8_t glbFilter[16];
874 uint8_t locFilter[16];
937 uint32_t param2, uint32_t param3);
942 #define QS_OUTPUT() (QS_output())
947 #define QS_RX_INPUT() (QS_rx_input())
966 QEvt
const *e,
bool status);
972 void QS_tickX_(uint_fast8_t
const tickRate,
void const *
const sender);
978 #define QS_TEST_PROBE_DEF(fun_) \
979 uint32_t const qs_tp_ = QS_getTestProbe_((void (*)(void))(fun_));
982 #define QS_TEST_PROBE(code_) \
983 if (qs_tp_ != 0U) { code_ }
986 #define QS_TEST_PROBE_ID(id_, code_) \
987 if (qs_tp_ == (uint32_t)(id_)) { code_ }
990 #define QS_TEST_PAUSE() do { \
991 QS_beginRec_((uint_fast8_t)QS_TEST_PAUSED); \
1020 #define QS_TEST_PROBE_DEF(fun_)
1021 #define QS_TEST_PROBE(code_)
1022 #define QS_TEST_PROBE_ID(id_, code_)
1023 #define QS_TEST_PAUSE() ((void)0)
@ QS_STR_T
zero-terminated ASCII string format
@ QS_U64_T
unsigned 64-bit integer format
@ QS_MEM_T
up to 255-bytes memory block format
@ QS_OBJ_T
object pointer format
@ QS_F32_T
32-bit floating point format
@ QS_SIG_T
event signal format
@ QS_HEX_FMT
HEX format for the "width" filed.
@ QS_U8_T
unsigned 8-bit integer format
@ QS_I64_T
signed 64-bit integer format
@ QS_I8_T
signed 8-bit integer format
@ QS_FUN_T
function pointer format
@ QS_F64_T
64-bit floating point format
@ QS_U32_T
unsigned 32-bit integer format
@ QS_I32_T
signed 32-bit integer format
@ QS_I16_T
signed 16-bit integer format
@ QS_U16_T
unsigned 16-bit integer format
void QS_locFilter_(int_fast16_t const filter)
Set/clear the local Filter for a given object-id or group of object-ids.
void QActiveDummy_ctor(QActiveDummy *const me)
Constructor of the QActiveDummy Active Object class.
void QS_onReset(void)
Callback function to reset the Target (to be implemented in the BSP)
@ SM_AO_OBJ
combination of SM and AO
void QS_onTestPost(void const *sender, QActive *recipient, QEvt const *e, bool status)
callback to examine an event that is about to be posted
uint8_t volatile QF_intNest
void QS_endRec_(void)
Mark the end of a QS record rec.
void const * locFilter_AP
deprecated local QS filter
void QS_onCleanup(void)
Callback to cleanup the QS facility.
uint8_t * buf
pointer to the start of the ring buffer
QSpyIdOffsets
QS ID offsets for QS_LOC_FILTER()
@ QS_EQ_ID
offset for event-queue IDs
@ QS_EP_ID
offset for event-pool IDs
@ QS_AP_ID
offset for Application-specific IDs
@ QS_AO_ID
offset for AO priorities
uint8_t chksum
the checksum of the current record
void QS_onTestSetup(void)
callback to setup a unit test inside the Target
void QS_ASSERTION(char_t const *const module, int_t const loc, uint32_t delay)
Output the assertion failure trace record.
uint8_t seq
the record sequence number
void QF_QS_ISR_ENTRY(uint8_t const isrnest, uint8_t const prio)
Output the interrupt entry record.
QSpyRecordGroups
QS record groups for QS_GLB_FILTER()
@ QS_U2_RECORDS
User Group 110-114 records.
@ QS_MP_RECORDS
Memory Pools QS records.
@ QS_TE_RECORDS
Time Events QS records.
@ QS_SM_RECORDS
State Machine QS records.
@ QS_U0_RECORDS
User Group 100-104 records.
@ QS_U3_RECORDS
User Group 115-119 records.
@ QS_U4_RECORDS
User Group 120-124 records.
@ QS_AO_RECORDS
Active Object QS records.
@ QS_QF_RECORDS
QF QS records.
@ QS_SC_RECORDS
Scheduler QS records.
@ QS_U1_RECORDS
User Group 105-109 records.
@ QS_EQ_RECORDS
Event Queues QS records.
@ QS_ALL_RECORDS
all maskable QS records
@ QS_UA_RECORDS
All User records.
void QS_str_fmt_(char_t const *str)
Output zero-terminated ASCII string element with format information.
void QS_queryCurrObj(uint8_t obj_kind)
Query the "current object" in the Target.
void QS_u16_raw_(uint16_t d)
Output raw uint16_t data element (without format information)
void QS_tickX_(uint_fast8_t const tickRate, void const *const sender)
internal function to process armed time events during test
void QF_QS_CRIT_EXIT(void)
Output the critical section exit.
void QS_u16_fmt_(uint8_t format, uint16_t d)
output uint16_t data element with format information
void QS_rxParse(void)
Parse all bytes present in the QS RX data buffer.
void QS_usr_dict_pre_(enum_t const rec, char_t const *const name)
Output predefined user-dictionary record.
uint32_t QSTimeCtr
The type of the QS time stamp.
void QS_f32_fmt_(uint8_t format, float32_t f)
Output 32-bit floating point data element with format information.
void QS_u64_fmt_(uint8_t format, uint64_t d)
Output uint64_t data element with format information.
uint32_t QS_getTestProbe_(void(*const api)(void))
QS internal function to get the Test-Probe for a given API.
void QS_u32_raw_(uint32_t d)
Output raw uint32_t data element (without format information)
void QS_processTestEvts_(void)
QS internal function to process posted events during test.
void QS_initBuf(uint8_t sto[], uint_fast16_t stoSize)
Initialize the QS data buffer.
void QS_str_raw_(char_t const *str)
Output raw zero-terminated string element (without format information)
void QS_onTestLoop(void)
callback to run the test loop
void QS_u64_raw_(uint64_t d)
Output raw uint64_t data element without format information.
void QS_u32_fmt_(uint8_t format, uint32_t d)
Output uint32_t data element with format information.
void QF_QS_ISR_EXIT(uint8_t const isrnest, uint8_t const prio)
Output the interrupt exit record.
bool QS_RX_PUT(uint8_t const b)
Put one byte into the QS RX lock-free buffer.
void QS_fun_dict_pre_(void(*const fun)(void), char_t const *name)
Output predefined function-dictionary record.
void QS_sig_dict_pre_(enum_t const sig, void const *const obj, char_t const *name)
Output predefined signal-dictionary record.
void QS_u8_fmt_(uint8_t format, uint8_t d)
Output uint8_t data element with format information.
QSpyObjKind
Kinds of objects used in QS.
@ SM_OBJ
state machine object
@ TE_OBJ
time event object
@ AP_OBJ
generic Application-specific object
@ MP_OBJ
event pool object
void QS_2u8_raw_(uint8_t d1, uint8_t d2)
output two raw uint8_t data elements (without format information)
void QS_beginRec_(uint_fast8_t rec)
Mark the begin of a QS record rec.
QSCtr head
offset to where next byte will be inserted
void QS_rxInitBuf(uint8_t sto[], uint16_t stoSize)
Initialize the QS RX data buffer.
uint_fast16_t QSCtr
QS ring buffer counter and offset type.
QSTimeCtr QS_onGetTime(void)
Callback to obtain a timestamp for a QS record.
QSpyUserOffsets
QS user record group offsets for QS_GLB_FILTER()
@ QS_USER0
offset for User Group 0
@ QS_USER3
offset for User Group 3
@ QS_USER1
offset for User Group 1
@ QS_USER2
offset for User Group 2
@ QS_USER4
offset for User Group 4
void QS_onFlush(void)
Callback to flush the QS trace data to the host.
QSCtr end
offset of the end of the ring buffer
uint8_t QS_onStartup(void const *arg)
Callback to startup the QS facility.
uint8_t const * QS_getBlock(uint16_t *pNbytes)
Block-oriented interface to the QS data buffer.
void QS_onTestTeardown(void)
callback to teardown after a unit test inside the Target
QSpyRxRecords
Enumeration for the received Qs record types (RX channel).
@ QS_RX_RESET
reset the Target
@ QS_RX_EVENT
inject an event to the Target
@ QS_RX_LOC_FILTER
set local filters in the Target
@ QS_RX_FILL
fill Target memory
@ QS_RX_AO_FILTER
set local AO filter in the Target
@ QS_RX_TICK
call QF_TICK_X() in the Target
@ QS_RX_PEEK
peek Target memory
@ QS_RX_CURR_OBJ
set the "current-object" in the Target
@ QS_RX_GLB_FILTER
set global filters in the Target
@ QS_RX_POKE
poke Target memory
@ QS_RX_INFO
query Target info (ver, config, tstamp)
@ QS_RX_TEST_TEARDOWN
test teardown
@ QS_RX_TEST_PROBE
set a Test-Probe in the Target
@ QS_RX_TEST_SETUP
test setup
@ QS_RX_COMMAND
execute a user-defined command in the Target
@ QS_RX_TEST_CONTINUE
continue a test after QS_TEST_PAUSE()
@ QS_RX_QUERY_CURR
query the "current object" in the Target
void QS_obj_dict_pre_(void const *const obj, char_t const *name)
Output predefined object-dictionary record.
void QS_u8_raw_(uint8_t d)
output raw uint8_t data element (without format information)
void QS_setCurrObj(uint8_t obj_kind, void *obj_ptr)
Set the "current object" in the Target.
uint16_t QS_getByte(void)
Byte-oriented interface to the QS data buffer.
void QS_glbFilter_(int_fast16_t const filter)
Set/clear the global Filter for a given QS record or group of records.
QSpyRecords
Quantum Spy record types.
@ QS_ASSERT_FAIL
assertion failed in the code
@ QS_QF_TIMEEVT_AUTO_DISARM
a time event expired and was disarmed
@ QS_MUTEX_UNLOCK
a mutex was unlocked
@ QS_QF_INT_ENABLE
interrupts were enabled
@ QS_QF_RUN
QF_run() was entered.
@ QS_QF_MPOOL_GET_ATTEMPT
attempt to get a memory block failed
@ QS_QF_DELETE_REF
an event reference is about to be deleted
@ QS_QF_ACTIVE_RECALL
AO recalled an event.
@ QS_QF_EQUEUE_GET_LAST
get the last event from the queue
@ QS_QF_TIMEEVT_DISARM
true disarming of an armed time event
@ QS_TEST_PROBE_GET
reports that Test-Probe has been used
@ QS_QEP_STATE_INIT
an initial transition was taken in a state
@ QS_QEP_TRAN_HIST
a tran to history was taken
@ QS_QF_TIMEEVT_REARM
rearming of a time event
@ QS_FUN_DICT
function dictionary entry
@ QS_QF_PUBLISH
an event was published
@ QS_QF_ACTIVE_POST_LIFO
an event was posted (LIFO) directly to AO
@ QS_QEP_TRAN_EP
a tran to entry point into a submachine
@ QS_QEP_STATE_EXIT
a state was exited
@ QS_TARGET_DONE
reports completion of a user callback
@ QS_USER
the first record available to QS users
@ QS_QF_GC_ATTEMPT
garbage collection attempt
@ QS_QF_CRIT_ENTRY
critical section was entered
@ QS_QF_MPOOL_PUT
a memory block was returned to memory pool
@ QS_QF_EQUEUE_POST_ATTEMPT
attempt to post an evt to QEQueue failed
@ QS_QF_GC
garbage collection
@ QS_QF_ACTIVE_GET
AO got an event and its queue is not empty.
@ QS_QF_CRIT_EXIT
critical section was exited
@ QS_QF_TIMEEVT_POST
a time event posted itself directly to an AO
@ QS_QF_INT_DISABLE
interrupts were disabled
@ QS_OBJ_DICT
object dictionary entry
@ QS_QF_MPOOL_GET
a memory block was removed from memory pool
@ QS_QF_TIMEEVT_DISARM_ATTEMPT
attempt to disarm a disarmed QTimeEvt
@ QS_QF_ACTIVE_RECALL_ATTEMPT
AO attempted to recall an event.
@ QS_QEP_INIT_TRAN
the top-most initial transition was taken
@ QS_MUTEX_LOCK
a mutex was locked
@ QS_TARGET_INFO
reports the Target information
@ QS_QEP_INTERN_TRAN
an internal transition was taken
@ QS_QEP_TRAN_XP
a tran to exit point out of a submachine
@ QS_RX_STATUS
reports QS data receive status
@ QS_SCHED_IDLE
scheduler became idle
@ QS_QF_EQUEUE_POST_LIFO
an event was posted (LIFO) to a raw queue
@ QS_QEP_STATE_ENTRY
a state was entered
@ QS_QEP_UNHANDLED
an event was unhandled due to a guard
@ QS_QF_ACTIVE_POST_ATTEMPT
attempt to post an evt to AO failed
@ QS_QEP_TRAN
a regular transition was taken
@ QS_QF_EQUEUE_GET
get an event and queue still not empty
@ QS_QF_ISR_ENTRY
an ISR was entered
@ QS_QF_NEW_ATTEMPT
an attempt to allocate an event failed
@ QS_QF_ISR_EXIT
an ISR was exited
@ QS_QF_TICK
QF_tickX() was called.
@ QS_QF_ACTIVE_UNSUBSCRIBE
an AO unsubscribed to an event
@ QS_QEP_DISPATCH
an event was dispatched (begin of RTC step)
@ QS_QF_ACTIVE_DEFER
AO deferred an event.
@ QS_SCHED_LOCK
scheduler was locked
@ QS_QF_NEW_REF
new event reference was created
@ QS_TEST_PAUSED
test has been paused
@ QS_SCHED_UNLOCK
scheduler was unlocked
@ QS_EMPTY
QS record for cleanly starting a session.
@ QS_QF_ACTIVE_POST
an event was posted (FIFO) directly to AO
@ QS_SIG_DICT
signal dictionary entry
@ QS_QUERY_DATA
reports the data from "current object" query
@ QS_QF_TIMEEVT_ARM
a time event was armed
@ QS_QEP_IGNORED
an event was ignored (silently discarded)
@ QS_USR_DICT
user QS record dictionary entry
@ QS_QF_NEW
new event was created
@ QS_QF_EQUEUE_POST
an event was posted (FIFO) to a raw queue
@ QS_QF_ACTIVE_GET_LAST
AO got an event and its queue is empty.
@ QS_SCHED_NEXT
scheduler found next task to execute
@ QS_PEEK_DATA
reports the data from the PEEK query
@ QS_QF_ACTIVE_SUBSCRIBE
an AO subscribed to an event
@ QS_SCHED_RESUME
scheduler resumed previous task (not idle)
QSCtr used
number of bytes currently in the ring buffer
void QS_onTestEvt(QEvt *e)
callback to "massage" the test event before dispatching/posting it
QSCtr tail
offset of where next byte will be extracted
void QS_obj_raw_(void const *const obj)
Output obj pointer data element without format information.
void QF_QS_CRIT_ENTRY(void)
Output the critical section entry.
uint8_t critNest
critical section nesting level
void QS_mem_fmt_(uint8_t const *blk, uint8_t size)
Output memory block of up to 255-bytes with format information.
uint16_t QS_rxGetNfree(void)
Obtain the number of free bytes in the QS RX data buffer.
void QS_f64_fmt_(uint8_t format, float64_t d)
Output 64-bit floating point data element with format information.
void QS_onCommand(uint8_t cmdId, uint32_t param1, uint32_t param2, uint32_t param3)
Callback function to execute user commands (to be implemented in BSP)
QSpyIdGroups
QS ID groups for QS_LOC_FILTER()
@ QS_EP_IDS
event-pool IDs
@ QS_AO_IDS
AO IDs (priorities)
@ QS_EQ_IDS
event-queue IDs
@ QS_AP_IDS
Application-specific IDs.
QActiveDummy Object class.
Private QS attributes to keep track of the filters and the trace buffer.