Overview
Source buffer holding 1 wire of fract32 data
Discussion
The 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 _ModuleSourceFract32 { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure fract32* value; // Array of interleaved audio data } ModuleSourceFract32Class; |
Variables
Properties
Name | Type | Usage | isHidden | Default value | Range | Units |
value | fract32* | parameter | 0 | [16 x 1] | Unrestricted |
Pins
Output Pins
Name: out
Description: output data
Data type: fract32
MATLAB Usage
File Name: source_fract32_module.m
...