File tree 1 file changed +17
-3
lines changed
1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 24
24
elif [ " $OPTARG " == " ppro" ]
25
25
then
26
26
BOARD=ppro
27
+ elif [ " $OPTARG " == " pipistrello" ]
28
+ then
29
+ BOARD=pipistrello
27
30
else
28
- echo " Supported targets (-t option) are: kc705 and ppro"
31
+ echo " Supported targets (-t option) are:"
32
+ echo " kc705, ppro, or pipistrello"
29
33
exit 1
30
34
fi
31
35
;;
43
47
echo " "
44
48
echo " To flash everything, do not use any of the -b|-B|-r option."
45
49
echo " "
46
- echo " usage: $0 [-b] [-B] [-r] [-h] [-t kc705|ppro] [-d path]"
50
+ echo " usage: $0 [-b] [-B] [-r] [-h] [-t kc705|ppro|pipistrello ] [-d path]"
47
51
echo " -b Flash bitstream"
48
52
echo " -B Flash BIOS"
49
53
echo " -r Flash ARTIQ runtime"
50
54
echo " -h Show this help message"
51
- echo " -t Target (kc705 or ppro, default is: ppro)"
55
+ echo " -t Target (kc705, pipistrello, ppro, default is: ppro)"
52
56
echo " -d Directory containing the binaries to be flashed"
53
57
exit 1
54
58
;;
70
74
PROXY_PATH=$BIN_PREFIX
71
75
BIOS_ADDR=0x60000
72
76
RUNTIME_ADDR=0x70000
77
+ elif [ " $BOARD " == " pipistrello" ]
78
+ then
79
+ UDEV_RULES=99-ppro.rules
80
+ BITSTREAM=artiq_pipistrello-amp-pipistrello.bin
81
+ CABLE=papilio
82
+ PROXY=bscan_spi_lx9_csg324.bit
83
+ BIN_PREFIX=$ARTIQ_PREFIX /binaries/pipistrello
84
+ PROXY_PATH=$BIN_PREFIX
85
+ BIOS_ADDR=0x170000
86
+ RUNTIME_ADDR=0x180000
73
87
elif [ " $BOARD " == " kc705" ]
74
88
then
75
89
UDEV_RULES=99-kc705.rules
You can’t perform that action at this time.
0 commit comments