|
QP/C
|
QF port to QK for a "generic" C compiler. More...
Go to the source code of this file.
Defines | |
| #define | QF_MAX_ACTIVE 63 |
| The maximum number of active objects in the application. | |
| #define | QF_MAX_EPOOL 3 |
| The maximum number of event pools in the application. | |
| #define | QF_EVENT_SIZ_SIZE 2 |
| The size (in bytes) of the event-size representation in the QF. Valid values: 1, 2, or 4; default 2. | |
| #define | QF_EQUEUE_CTR_SIZE 1 |
| The size (in bytes) of the ring-buffer counters used in the native QF event queue implementation. Valid values: 1, 2, or 4; default 1. | |
| #define | QF_MPOOL_SIZ_SIZE 2 |
| The size (in bytes) of the block-size representation in the native QF event pool. Valid values: 1, 2, or 4; default QF_EVENT_SIZ_SIZE. | |
| #define | QF_MPOOL_CTR_SIZE 2 |
| The size (in bytes) of the block-counter representation in the native QF event pool. Valid values: 1, 2, or 4; default 2. | |
| #define | QF_TIMEEVT_CTR_SIZE 2 |
| The size (in bytes) of the time event-counter representation in the QTimeEvt struct. Valid values: 1, 2, or 4; default 2. | |
| #define | QF_INT_DISABLE() intDisable() |
| Define the interrupt disabling policy. | |
| #define | QF_INT_ENABLE() intEnable() |
| Define the interrupt enabling policy. | |
| #define | QF_CRIT_STAT_TYPE crit_stat_t |
| Define the type of the critical section status. | |
| #define | QF_CRIT_ENTRY(stat_) ((stat_) = critEntry()) |
| Define the critical section entry policy. | |
| #define | QF_CRIT_EXIT(stat_) critExit(stat_) |
| Define the critical section exit policy. | |
QF port to QK for a "generic" C compiler.
Definition in file qf_port.h.
| #define QF_CRIT_ENTRY | ( | stat_ | ) | ((stat_) = critEntry()) |
Define the critical section entry policy.
This macro enters a critical section (often by means of disabling interrupts). When the "saving and restoring critical section status" policy is used, the macro sets the status_ argument to the critical section status just before the entry. When the policy of "unconditional critical section exit" is used, the macro does not use the status_ argument.
| #define QF_CRIT_EXIT | ( | stat_ | ) | critExit(stat_) |
Define the critical section exit policy.
This macro enters a critical section (often by means of disabling interrupts). When the "saving and restoring critical section status" policy is used, the macro restores the critical section status from the status_ argument. When the policy of "unconditional critical section exit" is used, the macro does not use the status argument and exits the critical section unconditionally (often by means of enabling interrupts).
| #define QF_CRIT_STAT_TYPE crit_stat_t |
| #define QF_EQUEUE_CTR_SIZE 1 |
The size (in bytes) of the ring-buffer counters used in the native QF event queue implementation. Valid values: 1, 2, or 4; default 1.
This macro can be defined in the QF ports to configure the QEQueueCtr type. If the macro is not defined, the default of 1 byte will be chosen in qequeue.h. The valid QF_EQUEUE_CTR_SIZE values of 1, 2, or 4, correspond to QEQueueCtr of uint8_t, uint16_t, and uint32_t, respectively. The QEQueueCtr data type determines the dynamic range of numerical values of ring-buffer counters inside event queues, or, in other words, the maximum number of events that the native QF event queue can manage.
| #define QF_EVENT_SIZ_SIZE 2 |
The size (in bytes) of the event-size representation in the QF. Valid values: 1, 2, or 4; default 2.
This macro can be defined in the QF ports to configure the ::QEventSize type. If the macro is not defined, the default of 2 byte will be chosen in qf.h. The valid QF_EVENT_SIZ_SIZE values of 1, 2, or 4, correspond to ::QEventSize of uint8_t, uint16_t, and uint32_t, respectively. The ::QEventSize data type determines the dynamic range of event-sizes in your application.
| #define QF_INT_DISABLE | ( | ) | intDisable() |
Define the interrupt disabling policy.
This macro encapsulates platform-specific way of disabling interrupts from "C" for a given CPU and compiler.
Definition at line 182 of file qf_port.h.
Referenced by QF_run(), QK_sched_(), and QK_schedExt_().
| #define QF_INT_ENABLE | ( | ) | intEnable() |
Define the interrupt enabling policy.
This macro encapsulates platform-specific way of enabling interrupts from "C" for a given CPU and compiler.
Definition at line 192 of file qf_port.h.
Referenced by QF_run(), QK_sched_(), and QK_schedExt_().
| #define QF_MAX_ACTIVE 63 |
The maximum number of active objects in the application.
This macro *must* be defined in the QF port and should be in range of 1..63, inclusive. The value of this macro determines the maximum priority level of an active object in the system. Not all priority levels must be used, but the maximum priority cannot exceed QF_MAX_ACTIVE.
Definition at line 53 of file qf_port.h.
Referenced by QActive_start(), QActive_subscribe(), QActive_unsubscribe(), QActive_unsubscribeAll(), QF_add_(), QF_getQueueMargin(), and QF_remove_().
| #define QF_MAX_EPOOL 3 |
The maximum number of event pools in the application.
This macro should be defined in the QF ports and should be in range of 1..255, inclusive. The value of this macro determines the maximum event pools in the system. Not all event pools must be actually used, but the maximum number of pools cannot exceed QF_MAX_EPOOL.
If the macro is not defined, the default value is 3. Defining the value below the maximum saves some memory, mostly for the subscriber-lists.
| #define QF_MPOOL_CTR_SIZE 2 |
The size (in bytes) of the block-counter representation in the native QF event pool. Valid values: 1, 2, or 4; default 2.
This macro can be defined in the QF ports to configure the ::QMPoolCtr type. If the macro is not defined, the default of 2 bytes will be chosen in qmpool.h. The valid QF_MPOOL_CTR_SIZE values of 1, 2, or 4, correspond to ::QMPoolSize of uint8_t, uint16_t, and uint32_t, respectively. The ::QMPoolCtr data type determines the dynamic range of block-counters that the native QMPool can handle, or, in other words, the maximum number of blocks that the native QF event pool can manage.
| #define QF_MPOOL_SIZ_SIZE 2 |
The size (in bytes) of the block-size representation in the native QF event pool. Valid values: 1, 2, or 4; default QF_EVENT_SIZ_SIZE.
This macro can be defined in the QF ports to configure the ::QMPoolSize type. If the macro is not defined, the default of QF_EVENT_SIZ_SIZE will be chosen in qmpool.h, because the memory pool is primarily used for implementing event pools.
The valid QF_MPOOL_SIZ_SIZE values of 1, 2, or 4, correspond to ::QMPoolSize of uint8_t, uint16_t, and uint32_t, respectively. The ::QMPoolSize data type determines the dynamic range of block-sizes that the native QMPool can hanle.
| #define QF_TIMEEVT_CTR_SIZE 2 |
The size (in bytes) of the time event-counter representation in the QTimeEvt struct. Valid values: 1, 2, or 4; default 2.
This macro can be defined in the QF ports to configure the internal tick counters of Time Events. If the macro is not defined, the default of 2 bytes will be chosen in qf.h. The valid QF_TIMEEVT_CTR_SIZE values of 1, 2, or 4, correspond to tick counters of uint8_t, uint16_t, and uint32_t, respectively. The tick counter representation determines the dynamic range of time delays that a Time Event can handle.
1.7.6.1