-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add zturn lite board #27
Conversation
Look at Versa ECP5. |
nmigen_boards/zturn_lite.py
Outdated
package = "clg400" | ||
speed = "1" | ||
|
||
resources = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure I want to merge this as-is -- no peripherals at all?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the only external peripherals are connected to the cpu, so they have to be accessed through the ps7
block
nmigen_boards/zturn_lite.py
Outdated
Connector( | ||
"expansion", 0, | ||
"- - " | ||
"B19 E17" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't correct. The concatenated string looks like "... B19 E17A20 D18 ..."
nmigen_boards/zturn_lite_z007s.py
Outdated
|
||
if __name__ == "__main__": | ||
from ._blinky import Blinky | ||
ZTurnLiteZ007SPlatform().build(Blinky(), do_program=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't make any sense to run blinky on a board with no LEDs.
Thanks. |
There is a version of this board with the
xc7z007s
aswell, not sure how to best handle that.