KMotion_dotNet.KM_CoordMotion.SetHardwareFRORange C# (CSharp) Method

SetHardwareFRORange() private method

Sets the Hardware FRO Range for all axes Below this value FRO is handled by hardware (no delay) Above this value FRO is handle by the Trajectory Planner (proper accelerations)
private SetHardwareFRORange ( double value ) : void
value double override percentage
return void
        private void SetHardwareFRORange(double value)
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_Set_HardwareFRORange(_InstanceHandle, value);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "SetHardwareFRORange"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "SetHardwareFRORange"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "SetHardwareFRORange"));
            }
        }
        /// <summary>
KM_CoordMotion