interface IPLL22150 {
    getConfiguration(): Promise<IPLL22150Configuration>;
    getEepromConfiguration(): Promise<IPLL22150Configuration>;
    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 (PLL22150).

    Parameters

    Returns Promise<void>

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

    Parameters

    Returns Promise<void>

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