Defines the structure for storing and representing supported parameter options,
organized by firmware version, versioned device product ID, and positional index.
The positional index typically refers to hardware elements such as:
Encoder ports
Digital I/Os (DIOs)
Analog inputs (AIs)
Each inner array represents the allowed option values (e.g., encoder types) for the corresponding position (port).
Example
Encodertypeparameter options: { "5.4": { "8500-01": [ [0], // First port: no encoder types are allowed [0, 1, 2, 3, 4, 7, 9], // Second port: supports these encoder types [0, 4, 7, 9], // Third port: supports a subset of encoder types [0], // Fourth port: no encoder types can be selected ], }, }
Defines the structure for storing and representing supported parameter options, organized by firmware version, versioned device product ID, and positional index.
The positional index typically refers to hardware elements such as:
Each inner array represents the allowed option values (e.g., encoder types) for the corresponding position (port).
Example