Skip to content
Snippets Groups Projects
Commit 595ef44b authored by Adrian Figueroa's avatar Adrian Figueroa
Browse files

bugfix

parent 91959812
No related branches found
No related tags found
No related merge requests found
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"]))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment