Merge pull request #125 from chuckwagoncomputing/rusEFI-stylization
switch rusefi and rusEfi to rusEFI
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 620 KiB After Width: | Height: | Size: 620 KiB |
|
@ -4,7 +4,7 @@
|
|||
|
||||
2. Uncompress the bundle and launch the rusEFI console. Hit the "Install Drivers" button to install the Virtual Com Port and ST-Link drivers. If necessary the bundle will also help you install java run-time.
|
||||
|
||||

|
||||

|
||||
|
||||
3. **IF you have a Frankenso or Frankenstein board with the FT232 Chip, Download and install [FTDI's usb VCP driver on your PC](http://www.ftdichip.com/Drivers/VCP.htm).**
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
* [How To DFU](HOWTO-DFU)
|
||||
* [How To Update Firmware](HOWTO-Update-Firmware)
|
||||
* [How To Upload a Tune](HOWTO-upload-tune)
|
||||
* [rusEFI Bundle](rusefi-bundle)
|
||||
* [rusEFI Bundle](HOWTO/rusEFI-bundle.md)
|
||||
|
||||
</details>
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ searchfile() {
|
|||
fi
|
||||
echo "$FILES" | cat --number
|
||||
read PICK
|
||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
||||
if ! [[ $PICK =~ ^[0-9]+$ ]]; then
|
||||
continue
|
||||
fi
|
||||
FILE=$(echo "$FILES" | head -n $PICK | tail -n 1 | sed 's/^\.\///')
|
||||
|
@ -64,7 +64,7 @@ searchfile() {
|
|||
fi
|
||||
echo "$FILES" | cat --number
|
||||
read PICK
|
||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
||||
if ! [[ $PICK =~ ^[0-9]+$ ]]; then
|
||||
continue
|
||||
fi
|
||||
FILE=$(basename "$(echo "$FILES" | head -n $PICK | tail -n 1)" .md)
|
||||
|
|