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
0
Merge Requests
0
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
Timothy Pearson
litex-boards
Commits
e5578a1a
Commit
e5578a1a
authored
May 27, 2020
by
Jędrzej Boczar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zcu104/platform: change I2C number to 0
parent
ac1f1cd6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
litex_boards/platforms/zcu104.py
litex_boards/platforms/zcu104.py
+1
-1
litex_boards/targets/zcu104.py
litex_boards/targets/zcu104.py
+1
-1
No files found.
litex_boards/platforms/zcu104.py
View file @
e5578a1a
...
...
@@ -43,7 +43,7 @@ _io = [
IOStandard
(
"LVCMOS18"
)
),
(
"i2c"
,
1
,
(
"i2c"
,
0
,
Subsignal
(
"sda"
,
Pins
(
"P12"
)),
Subsignal
(
"scl"
,
Pins
(
"N12"
)),
IOStandard
(
"LVCMOS33"
)
...
...
litex_boards/targets/zcu104.py
View file @
e5578a1a
...
...
@@ -78,7 +78,7 @@ class BaseSoC(SoCCore):
l2_cache_reverse
=
True
)
self
.
submodules
.
i2c
=
I2CMaster
(
platform
.
request
(
"i2c"
,
1
))
self
.
submodules
.
i2c
=
I2CMaster
(
platform
.
request
(
"i2c"
))
self
.
add_csr
(
"i2c"
)
# Leds -------------------------------------------------------------------------------------
...
...
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