-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add pre-processing and monitor function
- Loading branch information
1 parent
9ff7acb
commit 086ce0f
Showing
35 changed files
with
1,134 additions
and
595 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"top": "vexRiscvTest", | ||
"stage": "test" | ||
}, | ||
{ | ||
"top": "dnaOverSerial", | ||
"stage": "test" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,6 +106,7 @@ library | |
text, | ||
typelits-witnesses, | ||
vector, | ||
vivado-hs, | ||
|
||
exposed-modules: | ||
Bittide.Github.Artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
# SPDX-FileCopyrightText: 2024 Google LLC | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
set user_gdb_port [env GDB_PORT] | ||
if { $user_gdb_port == "" } { | ||
error "Required environment variable 'GDB_PORT' is not set." | ||
} | ||
|
||
bindto 0.0.0.0 | ||
gdb_port 3333 | ||
gdb_port $user_gdb_port | ||
tcl_port 6666 | ||
telnet_port 4444 |
Oops, something went wrong.