public void Populate(GetGlobalConfigurationResponse response)
 {
     EdisType           = response.EdisType;
     PipNoiseFilter     = response.PipNoiseFilter;
     CrankingAdvance    = response.CrankingAdvance;
     TriggerWheelOffset = response.TriggerWheelOffset;
 }
Example #2
0
        public void GetGlobalConfiguration()
        {
            GetGlobalConfigurationResponse response = (GetGlobalConfigurationResponse)SendCommand(new GetGlobalConfigurationCommand());

            if (response != null)
            {
                GlobalConfiguration.Populate(response);
            }
        }