forked from M-Labs/artiq
7c1abb25ec
Also, unify and improve diagnostic messages.
19 lines
297 B
Python
19 lines
297 B
Python
from operator import itemgetter
|
|
|
|
|
|
class Comm:
|
|
def __init__(self, dmgr):
|
|
super().__init__()
|
|
|
|
def switch_clock(self, external):
|
|
pass
|
|
|
|
def load(self, kernel_library):
|
|
pass
|
|
|
|
def run(self):
|
|
pass
|
|
|
|
def serve(self, object_map, symbolizer):
|
|
pass
|