Skip to content

Commit 95ac3d8

Browse files
committed
Fix documentation for all_have_oe
Signed-off-by: gatecat <gatecat@ds0.me>
1 parent ab069fb commit 95ac3d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chipflow_lib/platforms/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class PinSignature(wiring.Signature):
7373
7474
:param direction: Input, Output or Bidir
7575
:param width: width of port, default is 1
76-
:param all_have_oe: controls whether each output wire associated with an individual wire or single Output Enable signal will used for entire port, the default value is False, indicating that each output wire will have its own dedicated Output Enable signal.
76+
:param all_have_oe: controls whether each output wire is associated with an individual Output Enable bit or a single OE bit will be used for entire port, the default value is False, indicating that a single OE bit controls the entire port.
7777
:param init: a :ref:`const-castable object <lang-constcasting>` for the initial values of the port
7878
"""
7979

@@ -160,7 +160,7 @@ def BidirPinSignature(width, **kwargs):
160160
161161
:param width: specifies the number of individual input/output wires within this port. Each pair of input/output wires will correspond to a separate physical pad on the integrated circuit package.
162162
:type width: int
163-
:param all_have_oe: controls whether each output wire associated with an individual output enable wire or single Output Enable signal will be used for entire port, the default value is False, indicating that each output wire will have its own dedicated Output Enable signal.
163+
:param all_have_oe: controls whether each output wire is associated with an individual Output Enable bit or a single OE bit will be used for entire port, the default value is False, indicating that a single OE bit controls the entire port.
164164
:type all_have_oe: bool, optional
165165
:param init: a :ref:`const-castable object <lang-constcasting>` for the initial values of the port
166166
"""

0 commit comments

Comments
 (0)