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
71652e8d
Commit
71652e8d
authored
Mar 04, 2021
by
Florent Kermarrec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
icebreaker: Lower VideoTerminal resolution to use default 24MHz sys_clk.
parent
253d8129
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
litex_boards/targets/icebreaker.py
litex_boards/targets/icebreaker.py
+1
-5
No files found.
litex_boards/targets/icebreaker.py
View file @
71652e8d
...
...
@@ -78,10 +78,6 @@ class BaseSoC(SoCCore):
kwargs
[
"integrated_sram_size"
]
=
0
kwargs
[
"integrated_rom_size"
]
=
0
# Force sys_clk_freq with Video Terminal since iCE40's PLL only has 1 output.
if
with_video_terminal
:
sys_clk_freq
=
40e6
# Set CPU variant / reset address
kwargs
[
"cpu_reset_address"
]
=
self
.
mem_map
[
"spiflash"
]
+
bios_flash_offset
...
...
@@ -112,7 +108,7 @@ class BaseSoC(SoCCore):
if
with_video_terminal
:
platform
.
add_extension
(
icebreaker
.
dvi_pmod
)
self
.
submodules
.
videophy
=
VideoDVIPHY
(
platform
.
request
(
"dvi"
),
clock_domain
=
"sys"
)
self
.
add_video_terminal
(
phy
=
self
.
videophy
,
timings
=
"
800x600@60
Hz"
,
clock_domain
=
"sys"
)
self
.
add_video_terminal
(
phy
=
self
.
videophy
,
timings
=
"
640x480@75
Hz"
,
clock_domain
=
"sys"
)
# Leds -------------------------------------------------------------------------------------
self
.
submodules
.
leds
=
LedChaser
(
...
...
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