From 5e52965b66e7bc32865f4d45ff5551952c111a4b Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Wed, 8 Jul 2026 15:59:32 -0400 Subject: [PATCH] Update command data for Land Rover/Defender --- tests/test_cases/2025/command_support.yaml | 19 +++++++++++++++++++ tests/test_cases/2025/commands/7E0.0104.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0105.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0106.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.010D.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0110.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.011C.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0131.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0134.yaml | 6 ++++++ tests/test_cases/2025/commands/7E0.0144.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.0146.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.015C.yaml | 5 +++++ tests/test_cases/2025/commands/7E0.01A6.yaml | 5 +++++ 13 files changed, 80 insertions(+) create mode 100644 tests/test_cases/2025/commands/7E0.0104.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0105.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0106.yaml create mode 100644 tests/test_cases/2025/commands/7E0.010D.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0110.yaml create mode 100644 tests/test_cases/2025/commands/7E0.011C.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0131.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0134.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0144.yaml create mode 100644 tests/test_cases/2025/commands/7E0.0146.yaml create mode 100644 tests/test_cases/2025/commands/7E0.015C.yaml create mode 100644 tests/test_cases/2025/commands/7E0.01A6.yaml diff --git a/tests/test_cases/2025/command_support.yaml b/tests/test_cases/2025/command_support.yaml index 44d1dc6..3f4eed5 100644 --- a/tests/test_cases/2025/command_support.yaml +++ b/tests/test_cases/2025/command_support.yaml @@ -25,9 +25,28 @@ supported_commands_by_ecu: - 0130:WARM_UPS - 0131:CLR_DIST - 0133:BARO + - 0134:LAMBDA11_CURRENT,O2S11_CURRENT - 013C:CATEMP11 - 013E:CATEMP12 - 0141:ACRFCMPL,ACRF_ENA,AIR_CMPL,AIR_ENA,CAT_CMPL,CAT_ENA,CCM_CMPL,CCM_ENA,CIM_SUP_FLAG,EGR_CMPL,EGR_ENA,EVAPCMPL,EVAP_ENA,FUEL_CMPL,FUEL_ENA,HCATCMPL,HCAT_ENA,HTR_CMPL,HTR_ENA,MIS_CMPL,MIS_ENA,O2S_CMPL,O2S_ENA - 0142:VPWR - 0143:LOAD_ABS - 0144:EQ_RAT + - 7E0.0104:LOAD_PCT + - 7E0.0105:ECT + - 7E0.0106:SHRTFT1 + - 7E0.010D:VSS + - 7E0.0110:MAF + - 7E0.011C:OBDSUP + - 7E0.0131:CLR_DIST + - 7E0.0134:LAMBDA11_CURRENT,O2S11_CURRENT + - 7E0.0144:EQ_RAT + - 7E0.0146:AAT + - 7E0.015C:EOT + - 7E0.01A6:ODO +unsupported_commands_by_ecu: + "7E0": + - 7E0.221172:DEFENDER_BAT_V + - 7E0.221670:DEFENDER_FUEL_RAIL_P + - 7E0.22168E:DEFENDER_FUEL_RAIL_T + - 7E0.7E8.2216C1:DEFENDER_FLI diff --git a/tests/test_cases/2025/commands/7E0.0104.yaml b/tests/test_cases/2025/commands/7E0.0104.yaml new file mode 100644 index 0000000..f92267c --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0104.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0104 +test_cases: +- expected_values: + LOAD_PCT: 27.84314 + response: '7E803410447' diff --git a/tests/test_cases/2025/commands/7E0.0105.yaml b/tests/test_cases/2025/commands/7E0.0105.yaml new file mode 100644 index 0000000..79dfff1 --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0105.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0105 +test_cases: +- expected_values: + ECT: 81 + response: '7E803410579' diff --git a/tests/test_cases/2025/commands/7E0.0106.yaml b/tests/test_cases/2025/commands/7E0.0106.yaml new file mode 100644 index 0000000..0f7557a --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0106.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0106 +test_cases: +- expected_values: + SHRTFT1: 0 + response: '7E803410680' diff --git a/tests/test_cases/2025/commands/7E0.010D.yaml b/tests/test_cases/2025/commands/7E0.010D.yaml new file mode 100644 index 0000000..e9b2e02 --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.010D.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.010D +test_cases: +- expected_values: + VSS: 0 + response: 7E803410D00 diff --git a/tests/test_cases/2025/commands/7E0.0110.yaml b/tests/test_cases/2025/commands/7E0.0110.yaml new file mode 100644 index 0000000..f76d15d --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0110.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0110 +test_cases: +- expected_values: + MAF: 6.94 + response: 7E804411002B6 diff --git a/tests/test_cases/2025/commands/7E0.011C.yaml b/tests/test_cases/2025/commands/7E0.011C.yaml new file mode 100644 index 0000000..aa7d0a2 --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.011C.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.011C +test_cases: +- expected_values: + OBDSUP: OBD II + response: 7E803411C01 diff --git a/tests/test_cases/2025/commands/7E0.0131.yaml b/tests/test_cases/2025/commands/7E0.0131.yaml new file mode 100644 index 0000000..540b1b3 --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0131.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0131 +test_cases: +- expected_values: + CLR_DIST: 273 + response: '7E80441310111' diff --git a/tests/test_cases/2025/commands/7E0.0134.yaml b/tests/test_cases/2025/commands/7E0.0134.yaml new file mode 100644 index 0000000..5693f2b --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0134.yaml @@ -0,0 +1,6 @@ +command_id: 7E0.0134 +test_cases: +- expected_values: + LAMBDA11_CURRENT: 0.97287 + O2S11_CURRENT: -0.05859 + response: 7E80641347C877FF1 diff --git a/tests/test_cases/2025/commands/7E0.0144.yaml b/tests/test_cases/2025/commands/7E0.0144.yaml new file mode 100644 index 0000000..03d937d --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0144.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0144 +test_cases: +- expected_values: + EQ_RAT: 1.00002 + response: '7E80441448000' diff --git a/tests/test_cases/2025/commands/7E0.0146.yaml b/tests/test_cases/2025/commands/7E0.0146.yaml new file mode 100644 index 0000000..f71ec2f --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.0146.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.0146 +test_cases: +- expected_values: + AAT: 21 + response: 7E80341463D diff --git a/tests/test_cases/2025/commands/7E0.015C.yaml b/tests/test_cases/2025/commands/7E0.015C.yaml new file mode 100644 index 0000000..025095a --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.015C.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.015C +test_cases: +- expected_values: + EOT: 70 + response: 7E803415C6E diff --git a/tests/test_cases/2025/commands/7E0.01A6.yaml b/tests/test_cases/2025/commands/7E0.01A6.yaml new file mode 100644 index 0000000..bc52ed3 --- /dev/null +++ b/tests/test_cases/2025/commands/7E0.01A6.yaml @@ -0,0 +1,5 @@ +command_id: 7E0.01A6 +test_cases: +- expected_values: + ODO: 12416.5 + response: 7E80641A60001E505