Skip to content

Commit eba4111

Browse files
committed
Added JTAG server setup script
1 parent ec0bdd4 commit eba4111

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

scripts/setup_jtag_server_quartus.bat

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
@echo off
2+
rem ------------------------------------------------------------------------------
3+
rem setup_jtag_server_quartus.bat
4+
rem Konstantin Pavlov, [email protected]
5+
rem ------------------------------------------------------------------------------
6+
7+
rem this a quick setup script to enable remote jtag connections in Quartus IDE
8+
rem script must be executed with administrator privileges
9+
10+
11+
cd C:\IntelFPGA\17.0\quartus\bin64
12+
13+
echo current jtag server status
14+
jtagserver --status
15+
16+
echo enabling remote clients with password "aaa"
17+
jtagconfig --enableremote aaa
18+
19+
echo enabling automatic start for jtag server
20+
jtagserver --start
21+
22+
echo please restart your server computer now
23+
echo then connect to the server from a client
24+
25+
pause
26+
exit

0 commit comments

Comments
 (0)