Merge branch 'master' of https://github.com/mi-hol/rusefi_documentation
This commit is contained in:
commit
ff346b7ca1
|
@ -73,7 +73,7 @@ Honda K Exhaust Camshaft
|
|||
|
||||
### Mazda Miata NA
|
||||
|
||||
Also used on some Mitsubishi
|
||||
Also used on some Mitsubishi like 4g18 4g93
|
||||
|
||||

|
||||
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
Text format CAN traces preferred.
|
||||
Text format CAN traces preferred. Please name files according to scenarios.
|
||||
|
||||
# Ignition on
|
||||
|
||||
Start trace recording, turn ignition key/wake up car, turn key off, record until CAN traffic stops or 30 seconds whatever happens first. Stop trace recording.
|
||||
|
||||
# Brake Pedal
|
||||
|
||||
Ignition key ON, engine OFF. Tap and hold breaks five times.
|
||||
|
||||
# TPS/PPS sweep
|
||||
|
||||
|
@ -7,3 +15,40 @@ Ignition key ON, engine OFF. Press pedal all the way down fast, complexly releas
|
|||
# PPS sweep with TPS disengages
|
||||
|
||||
Open hood, unhook TPS sensor plug. Repeat "TPS/PPS sweep"
|
||||
|
||||
# 30 seconds of idle
|
||||
|
||||
Record 30 seconds of car idling
|
||||
|
||||
# Idle with CLT removed
|
||||
|
||||
Idle, Unplug and plug coolant sensor
|
||||
|
||||
# Wheels in the air
|
||||
|
||||
Raise car, turn wheels manually while ignition ON or idle.
|
||||
|
||||
# PR Special
|
||||
|
||||
Idle, Turn A/C on and off a few times
|
||||
|
||||
# Change gears while parked idling
|
||||
|
||||
Press brake pedal, engage R, engage D, engage R, engage D, engage R, engage D.
|
||||
|
||||
# Revving while parked
|
||||
|
||||
Rev engine slowly to 3000 RPM, rev engine quickly, rev engine slowly to 3000 RPM, rev engine quickly.
|
||||
|
||||
# 20 mph in 1st gear
|
||||
|
||||
If you have "1" selector accelerate to 20 mph/32kmh and drive for hundred meters.
|
||||
|
||||
# 20 mph in 2st gear
|
||||
|
||||
If you have "2" selector accelerate to 20 mph/32kmh and drive for hundred meters.
|
||||
|
||||
# 20 mph in 3st gear
|
||||
|
||||
If you have "3" selector accelerate to 20 mph/32kmh and drive for hundred meters.
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
## LEGACY CONTENT, please use BeerMoneyMotorsports Miata ECU
|
||||
|
||||

|
||||
|
||||
|
|
|
@ -59,6 +59,10 @@ Use setBrakePedalState to tell rusEFI about CAN-based brake pedal.
|
|||
|
||||
Use setAcRequestState to tell rusEFI about CAN-based A/C request.
|
||||
|
||||
### `setEtbDisabled(value)`
|
||||
|
||||
### `setIgnDisabled(value)`
|
||||
|
||||
### ``setAcDisabled(value)``
|
||||
|
||||
Disable/supress A/C functionality regardless of what and how enables it, an override kind of deal.
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
First we need to establish good terminology.
|
||||
|
||||
There are oldest transmission with external TCU, those are mostly controlled by on/off solenoids. We have some _untested_ _unfinished_ code to handle those, this work is totally halted as of Dec 2022.
|
||||
|
||||
Then we have some complex transmissions with external TCU like Honda, or clutch-to-clutch like Aisin 09G/09M, and modern transmissions with TCU located inside the transmission assembly. For those we are focusing on CAN integration only, not looking to re-invent the TCU itself.
|
|
@ -6,4 +6,4 @@ sudo apt update
|
|||
sudo apt install python3-pip
|
||||
|
||||
# pip did not work for in my case?
|
||||
pip install mkdocs mkdocs-ezlinks-plugin mkdocs-exclude
|
||||
pip install mkdocs mkdocs-ezlinks-plugin mkdocs-exclude pymdown-extensions
|
||||
|
|
|
@ -16,6 +16,9 @@ plugins:
|
|||
markdown_extensions:
|
||||
- sane_lists
|
||||
- md_in_html
|
||||
- toc:
|
||||
permalink: True
|
||||
- pymdownx.magiclink
|
||||
|
||||
extra_css:
|
||||
- style.css
|
||||
|
|
Loading…
Reference in New Issue