File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments