Constants.Protocol.cs 554 B

12345678910111213141516171819
  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. public const Byte PROT_PACKET_HEADER = 0xA5;
  16. #endregion
  17. }
  18. }