Overview
Source buffer holding 1 wire of data
Discussion
The Boolean source module has an internal buffer holding 1 output wire's worth of data. The module continuously copies the data from the internal value buffer to the output wire. Since this is a source module, you must specify the number of channels, blockSize, and sample rate of the output pin.
Type Definition
Code Block |
---|
typedef struct _ModuleBooleanSource { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure INT32* value; // Array of interleaved audio real data. } ModuleBooleanSourceClass; |
Variables
Properties
Name | Type | Usage | isHidden | Default value | Range | Units |
value | int* | parameter | 0 | [1 x 1] | 0:1:1 |
Pins
Output Pins
Name: out
Description: output data
Data type: int
MATLAB Usage
File Name: boolean_source_module.m
...