Skip to content

Commit

Permalink
gateware: platform: rev2: Fixed a bug where despite everything CIPO a…
Browse files Browse the repository at this point in the history
…nd COPI are backwards on the supervisor SPI interface???
  • Loading branch information
lethalbit committed Jan 12, 2025
1 parent c54466f commit 6e39ca7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions squishy/gateware/platform/rev2.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,11 @@ class SquishyRev2(SquishyPlatform, ECP5Platform):
# Supervisor bus
SquishySupervisor(
clk = 'U2',
copi = 'W2',
cipo = 'V2',
# ??? These are backwards???? Why???
# copi = 'W2',
copi = 'V2',
# cipo = 'V2',
cipo = 'W2',
attn = 'T2',
psram = 'Y2',
su_irq = 'W1',
Expand Down

0 comments on commit 6e39ca7

Please sign in to comment.