Difference between revisions of "Component: Circular Buffer (16-bit) (Buffer)"
From Flowcode Help
Jump to navigationJump to search| Line 85: | Line 85: | ||
''<span style="color:red;">No additional examples</span>'' | ''<span style="color:red;">No additional examples</span>'' | ||
| + | |||
| + | |||
| Line 91: | Line 93: | ||
==Macro reference== | ==Macro reference== | ||
| + | ===WaitForValues=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 124: | Line 127: | ||
| + | ===GetNumberValues=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 137: | Line 141: | ||
| + | ===PeekData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 150: | Line 155: | ||
| + | ===PutData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 168: | Line 174: | ||
| + | ===LookForValues=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 201: | Line 208: | ||
| + | ===GetData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 214: | Line 222: | ||
| + | ===FlushBuffer=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
| Line 227: | Line 236: | ||
| + | ===GetIndexedValue=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Revision as of 11:48, 3 February 2023
| Author | Matrix Ltd |
| Version | 1.5 |
| Category | Buffer |
Contents
Circular Buffer (16-bit) component
Circular buffer component allowing easy and efficient first in first out (FIFO) style data storage. Also features macros to allow you to check for specific 16-bit values.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_CircularBuffer16.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_CircularBuffer16.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
WaitForValues
GetNumberValues
| GetNumberValues | |
| Returns the number of valid 16-bit data values currently stored inside the buffer. | |
| Return | |
PeekData
| PeekData | |
| Reads the next available 16-bit data value from the circular buffer without advancing the current index, Returns the default value if the buffer is empty. | |
| Return | |
PutData
LookForValues
GetData
| GetData | |
| Reads the next available 16-bit value from the circular buffer, Returns the default value if the buffer is empty. | |
| Return | |
FlushBuffer
| FlushBuffer | |
| Clears the contents of the buffer and re-initialises the index locations. | |
| Return | |
GetIndexedValue
| GetIndexedValue | |
| Gets the value of a single 16-bit value at a known location in the buffer. Leaves the buffer contents and pointers untouched. | |
| address | |
| Return | |