From 600b05a3c31b3a9e97159165a47e35c269a66352 Mon Sep 17 00:00:00 2001 From: Jean THOMAS <25333063+jeanthom@users.noreply.github.com> Date: Sat, 7 Aug 2021 23:22:30 +0200 Subject: [PATCH] Fix typos --- doc/first-steps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/first-steps.md b/doc/first-steps.md index 26705b7..0a379d2 100644 --- a/doc/first-steps.md +++ b/doc/first-steps.md @@ -14,7 +14,7 @@ More instructions for other installation scenarios (including Windows) are avail ## Programming a development board -Just simply replace `my_fpga_board` with any FPGA board from the [board compatibility list](board-compatility-list.md) (or `openFPGALoader --list-boards`) in any of the two commands below, depending on if you want to program the volatile part of your FPGA (faster but not persistent) or the flash part of your FPGA (slower but persistent): +Just simply replace `my_fpga_board` with any FPGA board from the [board compatibility list](board-compatibility-list.md) (or `openFPGALoader --list-boards`) in any of the two commands below, depending on if you want to program the volatile part of your FPGA (faster but not persistent) or the flash part of your FPGA (slower but persistent): ```bash openFPGALoader -b my_fpga_board my_bitstream.bit # Program to SRAM @@ -29,7 +29,7 @@ If your FPGA doesn't come with a built-in programmer or if you prefer to use an ```bash openFPGALoader -c my_cable my_bitstream.bit # Program to SRAM -openFPGALoader -c my_cable my_bitstream.bit # Program to flash +openFPGALoader -c my_cable -f my_bitstream.bit # Program to flash ``` **Note:** For some cable (like digilent adapters) signals from the converter are not just directly to the FPGA. For this case, the -c must be added.