PLL Configuration (from EEPROM)
Opal Kelly devices with on-board PLLs allow PLL settings to be stored into EEPROM. To load the default settings, use the LoadDefaultPLLConfiguration method. The LoadDefaultPLLConfiguration method automatically finds the correct location in the EEPROM and configures the PLL on the FPGA according to the stored settings.
C/C++
okCFrontPanel dev;
dev.OpenBySerial();
dev.LoadDefaultPLLConfiguration();
Code language: CSS (css)
C#
okCFrontPanel dev = new okCFrontPanel();
dev.OpenBySerial("");
dev.LoadDefaultPLLConfiguration();
Code language: JavaScript (javascript)
Python
dev = ok.okCFrontPanel()
dev.OpenBySerial("")
dev.LoadDefaultPLLConfiguration()
Code language: JavaScript (javascript)
Java
public class example{
okCFrontPanel dev;
public void LoadDefault(){
dev = new okCFrontPanel();
dev.OpenBySerial("");
dev.LoadDefaultPLLConfiguration();
}
}
Code language: PHP (php)