README,main: add remote bitbang for ip and port
This commit is contained in:
parent
500c33e037
commit
9c1876818f
|
|
@ -89,7 +89,7 @@ openFPGALoader -- a program to flash FPGA
|
||||||
--freq arg jtag frequency (Hz)
|
--freq arg jtag frequency (Hz)
|
||||||
-f, --write-flash write bitstream in flash (default: false)
|
-f, --write-flash write bitstream in flash (default: false)
|
||||||
--index-chain arg device index in JTAG-chain
|
--index-chain arg device index in JTAG-chain
|
||||||
--ip arg IP address (only for XVC client)
|
--ip arg IP address (XVC and remote bitbang client)
|
||||||
--list-boards list all supported boards
|
--list-boards list all supported boards
|
||||||
--list-cables list all supported cables
|
--list-cables list all supported cables
|
||||||
--list-fpga list all supported FPGA
|
--list-fpga list all supported FPGA
|
||||||
|
|
@ -113,7 +113,8 @@ openFPGALoader -- a program to flash FPGA
|
||||||
1:verbose, 2:debug
|
1:verbose, 2:debug
|
||||||
-h, --help Give this help list
|
-h, --help Give this help list
|
||||||
--verify Verify write operation (SPI Flash only)
|
--verify Verify write operation (SPI Flash only)
|
||||||
--port arg Xilinx Virtual Cable Port (default 3721)
|
--port arg Xilinx Virtual Cable and remote bitbang Port
|
||||||
|
(default 3721)
|
||||||
--mcufw arg Microcontroller firmware
|
--mcufw arg Microcontroller firmware
|
||||||
--conmcu Connect JTAG to MCU
|
--conmcu Connect JTAG to MCU
|
||||||
-V, --Version Print program version
|
-V, --Version Print program version
|
||||||
|
|
|
||||||
|
|
@ -751,7 +751,7 @@ int parse_opt(int argc, char **argv, struct arguments *args,
|
||||||
"write bitstream in flash (default: false)")
|
"write bitstream in flash (default: false)")
|
||||||
("index-chain", "device index in JTAG-chain",
|
("index-chain", "device index in JTAG-chain",
|
||||||
cxxopts::value<int>(args->index_chain))
|
cxxopts::value<int>(args->index_chain))
|
||||||
("ip", "IP address (only for XVC client)",
|
("ip", "IP address (XVC and remote bitbang client)",
|
||||||
cxxopts::value<string>(args->ip_adr))
|
cxxopts::value<string>(args->ip_adr))
|
||||||
("list-boards", "list all supported boards",
|
("list-boards", "list all supported boards",
|
||||||
cxxopts::value<bool>(args->list_boards))
|
cxxopts::value<bool>(args->list_boards))
|
||||||
|
|
@ -793,7 +793,7 @@ int parse_opt(int argc, char **argv, struct arguments *args,
|
||||||
("xvc", "Xilinx Virtual Cable Functions",
|
("xvc", "Xilinx Virtual Cable Functions",
|
||||||
cxxopts::value<bool>(args->xvc))
|
cxxopts::value<bool>(args->xvc))
|
||||||
#endif
|
#endif
|
||||||
("port", "Xilinx Virtual Cable Port (default 3721)",
|
("port", "Xilinx Virtual Cable and remote bitbang Port (default 3721)",
|
||||||
cxxopts::value<int>(args->port))
|
cxxopts::value<int>(args->port))
|
||||||
("mcufw", "Microcontroller firmware",
|
("mcufw", "Microcontroller firmware",
|
||||||
cxxopts::value<std::string>(args->mcufw))
|
cxxopts::value<std::string>(args->mcufw))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue