Component: Data Queue to Bits (DSP Inputs): Difference between revisions
Appearance
m Text replacement - "style="background-color:#EAE1EA; color:#4B008D;"" to "class="mtx-class-propfolder"" |
m Text replacement - "style="background-color:#EAE1EA;"" to "class="mtx-class-propfolder"" |
||
| Line 325: | Line 325: | ||
|- | |- | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | DSP Buffer Properties | | width="90%" class="mtx-class-propfolder" | DSP Buffer Properties | ||
|- | |- | ||
| Line 339: | Line 339: | ||
| colspan="2" | Sets the buffer data type, data is automatically scaled to fit and make full use of the data type. | | colspan="2" | Sets the buffer data type, data is automatically scaled to fit and make full use of the data type. | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | Data Queue Properties | | width="90%" class="mtx-class-propfolder" | Data Queue Properties | ||
|- | |- | ||
Latest revision as of 14:37, 13 July 2026
| Author | Matrix Ltd |
| Version | 1.2 |
| Category | DSP Inputs |
Data Queue to Bits component
Allows data to be loaded into a buffer and then output a bit at a time into the DSP system. Useful for things like communications where data is modulated and sent out a bit at a time.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_DSP_DataToBits.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_DSP_DataToBits.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
CountQueueData
| CountQueueData | |
| Returns the number of data bytes/bits remaining in the queue. The bit count includes start/stop bits. | |
| CountBits | |
| 0=Return Byte Count, 1=Return Bit Count | |
| Return | |
FetchNextDataBit
| FetchNextDataBit | |
| Gets the next stored bit from the data queue. If the data queue is empty then returns the default state. | |
| Return | |
QueueByte
| QueueByte | |
| Adds a single byte value to the data buffer. | |
| Data | |
| Return | |
QueueByteArray
| QueueByteArray | |
| Adds an array of byte values to the data buffer. | |
| Data | |
| Count | |
| Return | |
QueueFloat
| QueueFloat | |
| Adds a single float value to the buffer. A 32-bit Float value occupies 4-bytes in the buffer. | |
| Data | |
| Return | |
QueueFloatArray
| QueueFloatArray | |
| Adds an array of float values to the data buffer. A 32-bit Float value occupies 4-bytes in the buffer. | |
| Data | |
| Count | |
| Return | |
QueueInt
| QueueInt | |
| Adds a single integer value to the data buffer. A 16-bit integer value occupies 2-bytes in the buffer. | |
| Data | |
| Return | |
QueueIntArray
| QueueIntArray | |
| Adds an array of integer values to the data buffer. A 16-bit integer value occupies 2-bytes in the buffer. | |
| Data | |
| Count | |
| Return | |
QueueLong
| QueueLong | |
| Adds a single long value to the data buffer. A 32-bit integer value occupies 4-bytes in the buffer. | |
| Data | |
| Return | |
QueueLongArray
| QueueLongArray | |
| Adds an array of long values to the data buffer. A 32-bit integer value occupies 4-bytes in the buffer. | |
| Data | |
| Count | |
| Return | |
QueueString
| QueueString | |
| Adds an string of characters to the data buffer. | |
| Data | |
| Return | |