-
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 Fomu Hacker platform. #28
Conversation
nmigen_boards/fomu_hacker.py
Outdated
connectors = [Connector("touch_pins", 0, "F4 E5 E4 F2")] | ||
|
||
def toolchain_program(self, products, name): | ||
iceprog = os.environ.get("DFU_UTIL", "dfu-util") |
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.
Wrong name.
nmigen_boards/fomu_hacker.py
Outdated
), | ||
] | ||
|
||
connectors = [Connector("touch_pins", 0, "F4 E5 E4 F2")] |
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.
Why is this a connector?
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 is due to the possibility to use those as gpio pins. It is a kind of weird design (see schematic). According to @xobs, they can be used as resistive touch sensors (with internal pulldown and a 3v3 plane on top of the board) but it seems to be fairly untested.
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 don't see them connected anywhere on schematic?
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.
Yes, they are just exposed pads on the PCB
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.
OK. It sounds like they should really be 4 connectors, Connector("pin", 0, "XX")
and so on.
Also, is the "Fomu Hacker" different from normal "Fomu"? /cc @mithro |
See the the fomu tutorial section hardware. |
Thanks. |
fyi: @mithro