Equalizer Entity

group EqualizerEntity

EqualizerClass: Provides receiver and transmitter gain/boost/emphasis settings for some of Acroname’s products. Please see product documentation for further details.

void equalizer_setReceiverConfig(unsigned int *id, struct Result *result, const int index, const unsigned char channel, const unsigned char config)

Sets the receiver configuration for a given channel.

Returns common entity return values.

Parameters:
  • id – ID assigned through “module_createStem”

  • result – Object containing aErrNone on success. Non-zero error code on failure.

  • index – The index of the entity in question.

  • channel – The equalizer receiver channel.

  • config – Configuration to be applied to the receiver.

void equalizer_getReceiverConfig(unsigned int *id, struct Result *result, const int index, const unsigned char channel)

Gets the receiver configuration for a given channel.

Returns common entity return values.

Parameters:
  • id – ID assigned through “module_createStem”

  • result – Object containing aErrNone and the requested value on success. Non-zero error code on failure. Configuration of the receiver.

  • index – The index of the entity in question.

  • channel – The equalizer receiver channel.

void equalizer_setTransmitterConfig(unsigned int *id, struct Result *result, const int index, const unsigned char config)

Sets the transmitter configuration

Returns common entity return values.

Parameters:
  • id – ID assigned through “module_createStem”

  • result – Object containing aErrNone on success. Non-zero error code on failure.

  • index – The index of the entity in question.

  • config – Configuration to be applied to the transmitter.

void equalizer_getTransmitterConfig(unsigned int *id, struct Result *result, const int index)

Gets the transmitter configuration

Returns common entity return values.

Parameters:
  • id – ID assigned through “module_createStem”

  • result – Object containing aErrNone and the requested value on success. Non-zero error code on failure. Configuration of the Transmitter.

  • index – The index of the entity in question.