[FPGA-Bitstream] Bug fix in wrong option name

This commit is contained in:
tangxifan 2021-10-05 18:58:47 -07:00
parent ad54c8547e
commit 2ea9826b17
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ ShellCommandId add_openfpga_write_fabric_bitstream_command(openfpga::Shell<Openf
shell_cmd.add_option("fast_configuration", false, "Reduce the size of bitstream to be downloaded"); shell_cmd.add_option("fast_configuration", false, "Reduce the size of bitstream to be downloaded");
/* Add an option '--keep_dont_care_bit' */ /* Add an option '--keep_dont_care_bit' */
shell_cmd.add_option("keep_dont_care_bit", false, "Keep don't care bits in bitstream file; If not enabled, don't care bits are converted to logic '0' or '1'"); shell_cmd.add_option("keep_dont_care_bits", false, "Keep don't care bits in bitstream file; If not enabled, don't care bits are converted to logic '0' or '1'");
/* Add an option '--verbose' */ /* Add an option '--verbose' */
shell_cmd.add_option("verbose", false, "Enable verbose output"); shell_cmd.add_option("verbose", false, "Enable verbose output");