final
This commit is contained in:
parent
0fb0661631
commit
9a54697dca
|
@ -25,7 +25,7 @@ Cranking mode is defined as any RPM value below the 'cranking RPM' setting. Duri
|
|||
|
||||
<!-- this magic '>' make a one line quote block -->
|
||||
|
||||
> <img src="FAQ/icons/hint.png" style="vertical-align:middle"> *Hint: If you have a fresh new engine ready for cranking, and you want to prepare the configuration for the first start, please first see: [First Engine Start](HOWTO/First-Engine-Start.md).*
|
||||
> <img src="FAQ/icons/hint.png" style="vertical-align:middle"> *Hint: If you have a fresh new engine ready for cranking, and you want to prepare the configuration for the first start, please first see: [First Engine Start](First-Engine-Start).*
|
||||
|
||||
|
||||
# Cranking Settings
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
* [MRE Kit instructions](Hardware-microRusEFI-kit-instructions)
|
||||
* [MRE DIY TLDR](Hardware/microrusefi/microRusEFI-DIY-TLDR.md)
|
||||
* [MRE DIY TLDR](microRusEFI-DIY-TLDR)
|
||||
|
||||
|
||||
[All Hardware pages](Pages-Hardware)
|
|
@ -3,7 +3,7 @@
|
|||
<details><summary><u>Throttle and ETB</u></summary>
|
||||
|
||||
* [How To - ETB ](HOWTO-electronic-throttle-body)
|
||||
* [How To - ETB configuration](HOWTO/HOWTO-electronic-throttle-body-configuration.md)
|
||||
* [How To - ETB configuration](HOWTO-electronic-throttle-body-configuration)
|
||||
* List of tested ETBs - Coming Soon
|
||||
* List of tested TPS sensors - Coming Soon
|
||||
* List of tested Throttle pedal sensors - Coming Soon
|
||||
|
@ -84,7 +84,7 @@
|
|||
|
||||
<details><summary><u>Fuel Injectors</u></summary>
|
||||
|
||||
* [GDI Status](FAQ/GDI-status.md)
|
||||
* [GDI Status](GDI-status)
|
||||
* List of tested fuel injectors - Coming Soon
|
||||
|
||||
</details>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* [Debug Mode](Debug-Mode)
|
||||
* [Performance Tracing](Developer-Performance-Tracing)
|
||||
* [Firmware Downloads](Downloads)
|
||||
* [Feature requests](HOWTO/Feature-Requests-the-Feature-Bounty-Program.md)
|
||||
* [Feature requests](Feature-Requests-the-Feature-Bounty-Program)
|
||||
* [Feature ideas](I-have-an-idea)
|
||||
* [How To DFU](HOWTO-DFU)
|
||||
* [How To Update Firmware](HOWTO-Update-Firmware)
|
||||
|
|
|
@ -44,6 +44,9 @@ searchfile() {
|
|||
fi
|
||||
echo "$FILES" | cat --number
|
||||
read PICK
|
||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
||||
continue
|
||||
fi
|
||||
FILE=$(echo "$FILES" | head -n $PICK | tail -n 1 | sed 's/^\.\///')
|
||||
REPLACE=$(escape '('$link')')
|
||||
REPLACEWITH=$(escapeReplace "$FILE")
|
||||
|
@ -61,6 +64,9 @@ searchfile() {
|
|||
fi
|
||||
echo "$FILES" | cat --number
|
||||
read PICK
|
||||
if ! [[ $PICK =~ '^[0-9]+$' ]]; then
|
||||
continue
|
||||
fi
|
||||
FILE=$(basename "$(echo "$FILES" | head -n $PICK | tail -n 1)" .md)
|
||||
REPLACE=$(escape '('$link')')
|
||||
REPLACEWITH=$(escapeReplace "$FILE")
|
||||
|
|
Loading…
Reference in New Issue