Components/Libraries/XF/FreeRTOS/Queue

(Difference between revisions)
Jump to: navigation, search
(~Queue())
(bool initQueue(baseUInt oSizeofObject))
Line 23: Line 23:
  
 
== bool initQueue(baseUInt oSizeofObject) ==
 
== bool initQueue(baseUInt oSizeofObject) ==
 +
=== Description ===
 +
Initialize the queue for the given size of object
 +
=== Parameters ===
 +
oSizeofObject : the size of the element that must be contained by the queue
 +
=== Return ===
 +
Return true if the Queue has been initialized correctly, else false
 +
 
== bool push(void* opEl, timeSize oTimeToWait) ==
 
== bool push(void* opEl, timeSize oTimeToWait) ==
 
== bool pushCopy(void* opEl, TickType_t oTimeToWait) ==
 
== bool pushCopy(void* opEl, TickType_t oTimeToWait) ==

Revision as of 13:18, 10 August 2017

Contents

Queue

The class Queue is a C++ interface that manage a FreeRTOS queue.

Member Attibuts

Queue()

Description

The constructor of the queue. It will create an uninitialized FreeRTOS queue. It mean that the queue is created but could not be used. Call initQueue to initialize it.

Parameters

oSizeofObject : the size of the element that must be contained by the Queue

Queue(baseUInt oSizeofObject)

Description

The constructor of the queue. It will create a free RTOS queue and initialize it for the given object size.

Parameters

oSizeofObject : the size of the element that must be contained by the Queue

~Queue()

The destructor of the Queue. It will delete the free RTOS queue.

Not that if the queue contains pointer, the objects must be deleted manually

bool initQueue(baseUInt oSizeofObject)

Description

Initialize the queue for the given size of object

Parameters

oSizeofObject : the size of the element that must be contained by the queue

Return

Return true if the Queue has been initialized correctly, else false

bool push(void* opEl, timeSize oTimeToWait)

bool pushCopy(void* opEl, TickType_t oTimeToWait)

bool pushFromISR(void* opEl)

bool pushCopyFromISR(void* opEl)

void* pop(timeSize oTimeToWait)

void* popFromISR()

void* peek(timeSize oTimeToWait)

void* peekFromISR()

bool overWrite(void* opEl)

bool overWriteCopy(void* opEl)

bool overWriteFromISR(void* opEl)

bool overWriteCopyFromISR(void* opEl)

bool isEmpty()

bool isFull()

QUEUE_LENGHT_SIZE itemsInQueue()

QUEUE_LENGHT_SIZE freeSpaceInQueue()

void reset()

bool isCreated()

Member Functions Description

Personal tools
Namespaces
Variants
Actions
Navigation
Browse
Toolbox