diff options
| author | Olivier Galibert <galibert@pobox.com> | 2023-02-21 10:44:40 +0100 |
|---|---|---|
| committer | Catherine <whitequark@whitequark.org> | 2023-02-21 09:48:53 +0000 |
| commit | a1da1f52831d94f2158824eb0e65b4acfc5e8f70 (patch) | |
| tree | 5b071c826c2bd92d17bcd1c930eaed120dffda98 /amaranth_boards/de10_nano.py | |
| parent | 609a65c163c1374fb5f9c528253c36caa8edd56f (diff) | |
mister/de10-nano: In order to detect clock-stretching, i2c clock lines must be bidirectional
Diffstat (limited to 'amaranth_boards/de10_nano.py')
| -rw-r--r-- | amaranth_boards/de10_nano.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amaranth_boards/de10_nano.py b/amaranth_boards/de10_nano.py index 1129813..d23cbe1 100644 --- a/amaranth_boards/de10_nano.py +++ b/amaranth_boards/de10_nano.py @@ -58,7 +58,7 @@ class DE10NanoPlatform(IntelPlatform): Subsignal("mclk", Pins("U11", dir="o")), Subsignal("lrclk", Pins("T11", dir="o")), Subsignal("sclk", Pins("T12", dir="o")), - Subsignal("scl", Pins("U10", dir="o")), + Subsignal("scl", Pins("U10", dir="io")), Subsignal("sda", Pins("AA4", dir="io")), Attrs(io_standard="3.3-V LVTTL")), ] |
