From 27470f93f946be2023cf6f99f0cc4db0d5390061 Mon Sep 17 00:00:00 2001 From: Scott Vincent Date: Tue, 1 Dec 2020 08:47:41 +0000 Subject: [PATCH] Remove banking assist as bank angle has now been increased in A32nx FlyVByWire mod --- instrument-data-link/simvarDefs.cpp | 4 ---- instrument-data-link/simvarDefs.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/instrument-data-link/simvarDefs.cpp b/instrument-data-link/simvarDefs.cpp index 782853f..2801210 100644 --- a/instrument-data-link/simvarDefs.cpp +++ b/instrument-data-link/simvarDefs.cpp @@ -80,8 +80,6 @@ const char* SimVarDefs[][2] = { { "Autopilot Airspeed Hold", "bool" }, { "Autopilot Approach Hold", "bool" }, { "Autopilot Glideslope Hold", "bool" }, - { "Autopilot Flight Director Bank", "degrees" }, - { "Autopilot Max Bank", "degrees" }, { "General Eng Throttle Lever Position:1", "percent" }, { "Autothrottle Active", "bool" }, { "Is Gear Retractable", "bool" }, @@ -153,8 +151,6 @@ WriteEvent WriteEvents[] = { { KEY_HEADING_SLOT_INDEX_SET, "HEADING_SLOT_INDEX_SET" }, { KEY_SPEED_SLOT_INDEX_SET, "SPEED_SLOT_INDEX_SET" }, { KEY_ALTITUDE_SLOT_INDEX_SET, "ALTITUDE_SLOT_INDEX_SET" }, - { KEY_AILERON_SET, "AILERON_SET" }, - { KEY_ELEVATOR_SET, "ELEVATOR_SET" }, { KEY_TUG_HEADING, "KEY_TUG_HEADING" }, { SIM_STOP, NULL } }; diff --git a/instrument-data-link/simvarDefs.h b/instrument-data-link/simvarDefs.h index dc99133..f51c6a0 100644 --- a/instrument-data-link/simvarDefs.h +++ b/instrument-data-link/simvarDefs.h @@ -82,8 +82,6 @@ struct SimVars double autopilotAirspeedHold = 0; double autopilotApproachHold = 0; double autopilotGlideslopeHold = 0; - double autopilotBank = 0; - double autopilotMaxBank = 0; double throttlePosition = 0; double autothrottleActive = 0; double gearRetractable = 1; @@ -156,8 +154,6 @@ enum EVENT_ID { KEY_HEADING_SLOT_INDEX_SET, KEY_SPEED_SLOT_INDEX_SET, KEY_ALTITUDE_SLOT_INDEX_SET, - KEY_AILERON_SET, - KEY_ELEVATOR_SET, KEY_TUG_HEADING };