From 595ef44b4c03593ce32868798cad237187c44516 Mon Sep 17 00:00:00 2001 From: Adrian Figueroa <adrian.figueroa@tu-dresden.de> Date: Mon, 16 Nov 2020 15:26:47 +0100 Subject: [PATCH] bugfix --- controlPlatform/extensions/pll.py | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/controlPlatform/extensions/pll.py b/controlPlatform/extensions/pll.py index 40564d8..68c673d 100644 --- a/controlPlatform/extensions/pll.py +++ b/controlPlatform/extensions/pll.py @@ -1,15 +1,17 @@ from ..extension import __Extension__ + class Pll(__Extension__): - """ - Extends a platform with "Pll" functionality - """ - def __init__(self, platform, configHandler): - super().__init__(self, platform, configHandler, "PLL") - - def configure(self): - """ - Signal to the PLL platform that configuration is finished and that PLL can now be programmed - """ - self.handler.communicate( - self.interface.send(["CONFIG", "EXTERNAL", "PLL", "FINISHED"])) \ No newline at end of file + """ + Extends a platform with "Pll" functionality + """ + + def __init__(self, platform, configHandler): + super().__init__(self, platform, configHandler, "PLL") + + def configure(self): + """ + Signal to the PLL platform that configuration is finished and that PLL can now be programmed + """ + self.configHandler.communicate( + self.interface.send(["CONFIG", "EXTERNAL", "PLL", "FINISHED"])) -- GitLab