您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
19 行
381 B
19 行
381 B
![]()
6 年前
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
|
||
|
# Set up tftp:
|
||
|
cp -p /home/jebba/devel/FPGA/muh/BEST/tftp/* /srv/tftp/
|
||
|
|
||
|
# Set up SVF
|
||
|
cp -p /home/jebba/devel/FPGA/muh/BEST/SVF/top.svf
|
||
|
|
||
|
openocd \
|
||
|
-f /home/jebba/devel/FPGA/muh/BEST/openocd/trellisboard.cfg \
|
||
|
-c "init; svf /home/jebba/devel/FPGA/muh/BEST/SVF/top.svf ; exit"
|
||
|
|
||
|
echo "lxterm /dev/ttyUSB1 --speed=1e6"
|
||
|
|
||
|
lxterm /dev/ttyUSB2 --speed=1e6
|
||
|
|