CaliDataType.cs 731 B

12345678910111213141516171819202122
  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. [Flags]
  9. public enum CaliDataType
  10. {
  11. None = 0,
  12. TiAdc_PhaseOffsetGain = 0x0001,
  13. TiAdc_SyncSampleClock = 0x0002,
  14. PhyChannel = 0x0004,
  15. CoefficientsTable_AFC = 0x0010,
  16. CoefficientsTable_TiAdc = 0x0020,
  17. CoefficientsTable_Interpolation = 0x0040,
  18. Misc = 0x0080,
  19. All = 0xffff
  20. }
  21. }