IFxpConvert.cs 582 B

12345678910111213
  1. using System;
  2. namespace FxpConvert.Common
  3. {
  4. public interface IFxpConvert
  5. {
  6. public Boolean IsSupport { get; }
  7. public void FxpConvertToFloat(ref ulong fxp, NiFpga_FxpTypeInfo dxpinfo, ref float value, uint count);
  8. public void FloatConvertToDxp(ref float value, NiFpga_FxpTypeInfo dxpinfo, ref ulong fxp, uint count);
  9. public void FxpConvertToDouble(ref ulong fxp, NiFpga_FxpTypeInfo dxpinfo, ref double value, uint count);
  10. public void DoubleConvertToDxp(ref double value, NiFpga_FxpTypeInfo dxpinfo, ref ulong fxp, uint count);
  11. }
  12. }