Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rkx7-litex-boards
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
rkx7-litex-boards
Commits
de4ad324
Commit
de4ad324
authored
3 years ago
by
Florent Kermarrec
Browse files
Options
Downloads
Patches
Plain Diff
mnt_rkx7: Revert default sys_clk_freq to 100MHz.
parent
18582739
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
litex_boards/targets/mnt_rkx7.py
+2
-2
2 additions, 2 deletions
litex_boards/targets/mnt_rkx7.py
with
2 additions
and
2 deletions
litex_boards/targets/mnt_rkx7.py
+
2
−
2
View file @
de4ad324
...
...
@@ -47,7 +47,7 @@ class _CRG(Module):
# BaseSoC ------------------------------------------------------------------------------------------
class
BaseSoC
(
SoCCore
):
def
__init__
(
self
,
sys_clk_freq
=
int
(
1
25
e6
),
with_ethernet
=
False
,
with_etherbone
=
False
,
def
__init__
(
self
,
sys_clk_freq
=
int
(
1
00
e6
),
with_ethernet
=
False
,
with_etherbone
=
False
,
with_spi_flash
=
False
,
**
kwargs
):
platform
=
mnt_rkx7
.
Platform
()
...
...
@@ -99,7 +99,7 @@ def main():
parser
=
argparse
.
ArgumentParser
(
description
=
"
LiteX SoC on MNT-RKX7
"
)
parser
.
add_argument
(
"
--build
"
,
action
=
"
store_true
"
,
help
=
"
Build bitstream
"
)
parser
.
add_argument
(
"
--load
"
,
action
=
"
store_true
"
,
help
=
"
Load bitstream
"
)
parser
.
add_argument
(
"
--sys-clk-freq
"
,
default
=
1
25
e6
,
help
=
"
System clock frequency (default: 1
25
MHz)
"
)
parser
.
add_argument
(
"
--sys-clk-freq
"
,
default
=
1
00
e6
,
help
=
"
System clock frequency (default: 1
00
MHz)
"
)
parser
.
add_argument
(
"
--with-spi-flash
"
,
action
=
"
store_true
"
,
help
=
"
Enable SPI Flash (MMAPed)
"
)
sdopts
=
parser
.
add_mutually_exclusive_group
()
sdopts
.
add_argument
(
"
--with-spi-sdcard
"
,
action
=
"
store_true
"
,
help
=
"
Enable SPI-mode SDCard support
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment