Merge pull request #125 from chuckwagoncomputing/rusEFI-stylization

switch rusefi and rusEfi to rusEFI
This commit is contained in:
David Holdeman 2021-02-17 15:28:27 -06:00 committed by GitHub
commit e253a6ac38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 4 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 620 KiB

After

Width:  |  Height:  |  Size: 620 KiB

View File

@ -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.
![console](FAQ/images/rusEfi_console_start_screen.png) ![console](FAQ/images/rusEFI_console_start_screen.png)
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).**

View File

@ -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>

View File

@ -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)