Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex-boards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kestrel Collaboration
Kestrel LiteX
litex-boards
Commits
d626861e
Commit
d626861e
authored
Oct 29, 2020
by
Florent Kermarrec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
platforms/acorn_cle_215: add serial_io (on P2).
parent
f9252fdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
litex_boards/platforms/acorn_cle_215.py
litex_boards/platforms/acorn_cle_215.py
+11
-0
No files found.
litex_boards/platforms/acorn_cle_215.py
View file @
d626861e
...
...
@@ -76,6 +76,16 @@ _io = [
),
]
_serial_io
=
[
# Serial adapter on P2
(
"serial"
,
0
,
Subsignal
(
"tx"
,
Pins
(
"K2"
)),
Subsignal
(
"rx"
,
Pins
(
"J2"
)),
Misc
(
"SLEW=FAST"
),
IOStandard
(
"LVCMOS33"
),
),
]
_sdcard_io
=
[
# SPI SDCard adapter on P2
# https://spoolqueue.com/new-design/fpga/migen/litex/2020/08/11/acorn-cle-215.html
...
...
@@ -97,6 +107,7 @@ class Platform(XilinxPlatform):
def
__init__
(
self
):
XilinxPlatform
.
__init__
(
self
,
"xc7a200t-fbg484-2"
,
_io
,
toolchain
=
"vivado"
)
self
.
add_extension
(
_serial_io
)
self
.
add_extension
(
_sdcard_io
)
self
.
add_platform_command
(
"set_property INTERNAL_VREF 0.750 [get_iobanks 34]"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment