ICoefficientsTable.cs 486 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Uestc.Auto6.Dso.Hardware.Calibration.Data.Base
  7. {
  8. public interface ICoefficientsTable
  9. {
  10. public Int32[] this[int channelIndex]
  11. {
  12. get;
  13. }
  14. public Int32 this[int channelIndex, int index]
  15. {
  16. get;
  17. set;
  18. }
  19. public byte[] SerializeByFpgaFormat(int channelID);
  20. }
  21. }