interface IPLL22393 {
    getConfiguration(): Promise<IPLL22393Configuration>;
    getEepromConfiguration(): Promise<IPLL22393Configuration>;
    loadDefaultConfiguration(): Promise<void>;
    setConfiguration(config): Promise<void>;
    setEepromConfiguration(config): Promise<void>;
}

Methods

  • Configures the PLL from settings stored in EEPROM.

    Returns Promise<void>

    • Promise that resolves when the configuration has been successfully loaded.
  • Store the PLL configuration via the I2C bus (PLL22393).

    Parameters

    Returns Promise<void>

    • Promise that resolves when the configuration has been successfully set.
  • Store PLL configuration on the on-board EEPROM (PLL22393).

    Parameters

    Returns Promise<void>

    • Promise that resolves when the configuration has been successfully set.