Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SoCDebug Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SoCLabs
SoCDebug Tech
Compare revisions
049294a8aa4385e4b2e2a03210b315a574e2a787 to 9ef8d848da72e57f806b24eed5c2f6bbdce66668
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
soclabs/socdebug_tech
Select target project
No results found
9ef8d848da72e57f806b24eed5c2f6bbdce66668
Select Git revision
Branches
feat_extio
main
Swap
Target
soclabs/socdebug_tech
Select target project
soclabs/socdebug_tech
1 result
049294a8aa4385e4b2e2a03210b315a574e2a787
Select Git revision
Branches
feat_extio
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
block RX until RX-enable set
· 9ef8d848
dwf1m12
authored
3 months ago
9ef8d848
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
controller/verilog/socdebug_usrt_control.v
+1
-1
1 addition, 1 deletion
controller/verilog/socdebug_usrt_control.v
with
1 addition
and
1 deletion
controller/verilog/socdebug_usrt_control.v
View file @
9ef8d848
...
...
@@ -449,7 +449,7 @@ assign write_enable10 = write_enable & (PADDR[11:2] == 10'h004);
rx_buf_full
<=
nxt_rx_buf_full
;
end
assign
RX_READY_o
=
!
rx_buf_full
;
assign
RX_READY_o
=
reg_ctrl
[
1
]
&
!
rx_buf_full
;
// Registering receive data buffer
always
@
(
posedge
PCLK
or
negedge
PRESETn
)
...
...
This diff is collapsed.
Click to expand it.