Constants.Protocol.cs 501 B

123456789101112131415161718
  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.ComModel
  7. {
  8. public static partial class Constants
  9. {
  10. #region 协议触发/解码控制字
  11. public const UInt32 PROT_USED4_TRIG = 0;
  12. public const UInt32 PROT_USED4_DECODE = 1;
  13. public const UInt32 PROT_SYS_CLOCK_HZ = 250000000;
  14. public const UInt32 PROT_JTAG_SYS_CLOCK_HZ = 250000000;
  15. #endregion
  16. }
  17. }