您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
500 B

  1. using JT809.Protocol.Enums;
  2. using JT809.Protocol.Extensions;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using Xunit;
  7. namespace JT809.Protocol.Test.JT809MessageBody
  8. {
  9. public class JT809_0x1005Test
  10. {
  11. [Fact]
  12. public void Test1()
  13. {
  14. JT809Package heartbeatPackage = JT809BusinessType.主链路连接保持请求消息.Create();
  15. byte[] sendHeartbeatData = JT809Serializer.Serialize(heartbeatPackage, 100);
  16. }
  17. }
  18. }