diff options
| author | Anton Blanchard <anton@ozlabs.org> | 2021-09-14 14:13:36 +1000 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2021-09-15 02:06:05 +0000 |
| commit | 6f46fe41134465d8ee7159ed4370ceade801b3f6 (patch) | |
| tree | 2ff4e24593e36296d39706f8782c6d811e980913 /nmigen_boards | |
| parent | cb18fc51c438c610c87e8ef917dd040bd32e5122 (diff) | |
orangecrab_r0_1: Fix program pin
The program pin is incorrect on the OrangeCrab r0.1.
Diffstat (limited to 'nmigen_boards')
| -rw-r--r-- | nmigen_boards/orangecrab_r0_1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nmigen_boards/orangecrab_r0_1.py b/nmigen_boards/orangecrab_r0_1.py index 34a5c02..2a5cb3a 100644 --- a/nmigen_boards/orangecrab_r0_1.py +++ b/nmigen_boards/orangecrab_r0_1.py @@ -21,7 +21,7 @@ class OrangeCrabR0_1Platform(LatticeECP5Platform): # Used to reload FPGA configuration. # Can enter USB bootloader by assigning button 0 to program. - Resource("program", 0, PinsN("V17", dir="o"), Attrs(IO_TYPE="LVCMOS33")), + Resource("program", 0, PinsN("R16", dir="o"), Attrs(IO_TYPE="LVCMOS33")), RGBLEDResource(0, r="V17", g="T17", b="J3", invert=True, |
