Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Scroll Documents: Update page title prefix

Overview

Gets parameters in other modules

Discussion

The ParamGet module gets the value of a parameter from another module.

...

Please see the ParamGet example for specific use cases.

Type Definition

Code Block
typedef struct _ModuleParamGet
{
    ModuleInstanceDescriptor instance;            // Common Audio Weaver module instance structure
    void * modPtr;                                // Points to the module to get
    void * varPtr;                                // Points to the variable to get within the module instance structure
} ModuleParamGetClass;

Variables

Properties

Name

Type

Usage

isHidden

Default value

Range

Units

modPtr

void *

parameter

1

Unrestricted

varPtr

void *

parameter

1

Unrestricted

Pins

Output Pins

Name: out

Description: parameter value

Data type: float

MATLAB Usage

File Name: param_get_module.m

...