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.
|
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).**
|
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 DFU](HOWTO-DFU)
|
||||||
* [How To Update Firmware](HOWTO-Update-Firmware)
|
* [How To Update Firmware](HOWTO-Update-Firmware)
|
||||||
* [How To Upload a Tune](HOWTO-upload-tune)
|
* [How To Upload a Tune](HOWTO-upload-tune)
|
||||||
* [rusEFI Bundle](rusefi-bundle)
|
* [rusEFI Bundle](HOWTO/rusEFI-bundle.md)
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ searchfile() {
|
||||||
fi
|
fi
|
||||||
echo "$FILES" | cat --number
|
echo "$FILES" | cat --number
|
||||||
read PICK
|
read PICK
|
||||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
if ! [[ $PICK =~ ^[0-9]+$ ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
FILE=$(echo "$FILES" | head -n $PICK | tail -n 1 | sed 's/^\.\///')
|
FILE=$(echo "$FILES" | head -n $PICK | tail -n 1 | sed 's/^\.\///')
|
||||||
|
@ -64,7 +64,7 @@ searchfile() {
|
||||||
fi
|
fi
|
||||||
echo "$FILES" | cat --number
|
echo "$FILES" | cat --number
|
||||||
read PICK
|
read PICK
|
||||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
if ! [[ $PICK =~ ^[0-9]+$ ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
FILE=$(basename "$(echo "$FILES" | head -n $PICK | tail -n 1)" .md)
|
FILE=$(basename "$(echo "$FILES" | head -n $PICK | tail -n 1)" .md)
|
||||||
|
|