"Ticker" Active Object class More...
#include "qp.h"
Public Member Functions | |
void | QTicker_ctor (QTicker *const me, uint_fast8_t const tickRate) |
Constructor of the QTicker Active Object class. | |
![]() | |
void | QActive_setAttr (QActive *const me, uint32_t attr1, void const *attr2) |
void | QActive_start (QActive *const me, QPrioSpec const prioSpec, QEvtPtr *const qSto, uint_fast16_t const qLen, void *const stkSto, uint_fast16_t const stkSize, void const *const par) |
Starts execution of an active object and registers the object with the framework. | |
Protected Attributes | |
QActive | super |
![]() | |
QAsm | super |
uint8_t | prio |
QF-priority [1..QF_MAX_ACTIVE] of this AO. | |
uint8_t | pthre |
Preemption-threshold [1..QF_MAX_ACTIVE] of this AO. | |
QACTIVE_THREAD_TYPE | thread |
Port-dependent representation of the thread of the active object. | |
QACTIVE_OS_OBJ_TYPE | osObject |
Port-dependent per-thread object. | |
QACTIVE_EQUEUE_TYPE | eQueue |
Port-dependent event-queue type (often QEQueue) | |
![]() | |
struct QAsmVtable const * | vptr |
Virtual pointer inherited by all QAsm subclasses (see also SAS_QP_OO) | |
union QAsmAttr | state |
Current state (pointer to the current state-handler function) | |
union QAsmAttr | temp |
Temporary storage for target/act-table etc. | |
Private Member Functions | |
void | QTicker_init_ (QAsm *const me, void const *const par, uint_fast8_t const qsId) |
void | QTicker_dispatch_ (QAsm *const me, QEvt const *const e, uint_fast8_t const qsId) |
void | QTicker_trig_ (QActive *const me, void const *const sender) |
Asynchronously trigger the QTicker active object to perform tick processing. | |
Additional Inherited Members | |
![]() | |
void | QActive_psInit (QSubscrList *const subscrSto, enum_t const maxSignal) |
Publish event to all subscribers of a given signal e->sig | |
uint_fast16_t | QActive_getQueueMin (uint_fast8_t const prio) |
This function returns the minimum of free entries of the given event queue. | |
![]() | |
void | QActive_ctor (QActive *const me, QStateHandler const initial) |
QActive constructor (abstract base class) | |
void | QActive_stop (QActive *const me) |
Stops execution of an active object and removes it from the framework's supervision. | |
void | QActive_subscribe (QActive const *const me, enum_t const sig) |
Subscribes for delivery of signal sig to the active object. | |
void | QActive_unsubscribe (QActive const *const me, enum_t const sig) |
Unsubscribes from the delivery of signal sig to the active object. | |
void | QActive_unsubscribeAll (QActive const *const me) |
Unsubscribes from the delivery of all signals to the active object. | |
bool | QActive_defer (QActive const *const me, struct QEQueue *const eq, QEvt const *const e) |
Defer an event to a given separate event queue. | |
bool | QActive_recall (QActive *const me, struct QEQueue *const eq) |
Recall a deferred event from a given event queue. | |
uint_fast16_t | QActive_flushDeferred (QActive const *const me, struct QEQueue *const eq, uint_fast16_t const num) |
Flush the specified number of events from the deferred queue eq | |
![]() | |
static void | QAsm_ctor (QAsm *const me) |
Constructor of the QAsm base class. | |
"Ticker" Active Object class
void QTicker_ctor | ( | QTicker *const | me, |
uint_fast8_t const | tickRate ) |
|
private |
|
private |
Asynchronously trigger the QTicker active object to perform tick processing.