If you want one configuration parameter to use the value of another configuration parameter, you can set a variable for the configuration parameter value.
ConfigParam=$ConfigSection.AnotherParam
where:
ConfigParam
|
is the name of the configuration parameter set by the value of the referenced configuration parameter. |
ConfigSection
|
is the name of the configuration section where the referenced configuration parameter appears. |
AnotherParam
|
is the name of the configuration parameter in the specified ConfigSection whose value the ConfigParam parameter takes. This value can either be a fixed value or an action parameter variable. |
For example:
[wav] SampleFrequency=$ENUK.SampleFrequency
In this example, the SampleFrequency
configuration parameter in the [wav]
module configuration section uses the value of SampleFrequency
in the [ENUK]
language configuration section.
|