forked from M-Labs/artiq
rtio/sed: use __all__
This commit is contained in:
parent
feec6298a5
commit
a92a955d1e
|
@ -3,6 +3,9 @@ from migen import *
|
|||
from artiq.gateware.rtio import cri
|
||||
|
||||
|
||||
__all__ = ["LaneDistributor"]
|
||||
|
||||
|
||||
def layout_lane_io(seqn_width, layout_payload):
|
||||
return [
|
||||
("we", 1, DIR_M_TO_S),
|
||||
|
|
|
@ -7,6 +7,9 @@ from artiq.gateware.rtio import rtlink
|
|||
from artiq.gateware.rtio.sed.output_network import OutputNetwork
|
||||
|
||||
|
||||
__all__ = ["OutputDriver"]
|
||||
|
||||
|
||||
class OutputDriver(Module):
|
||||
def __init__(self, channels, lane_count, seqn_width):
|
||||
self.collision = Signal()
|
||||
|
|
Loading…
Reference in New Issue