radar_test.go 995 B

12345678910111213141516171819202122232425262728293031323334
  1. package protocol
  2. import (
  3. "testing"
  4. )
  5. //buf.Write([]byte{0xFE, 0x5C, 0x4B, 0x89, 0x2A, 0x00, 0x00, 0x00})
  6. //fmt.Println("buf", buf.Bytes())
  7. //
  8. //fmt.Println("转换", hex.EncodeToString(buf.Bytes()))
  9. //
  10. //reply, _ := hex.DecodeString(
  11. //"fe5c4b892a000000")
  12. //fmt.Println("reply", reply)
  13. func Test_verify(t *testing.T) {
  14. //login := AuthDataPack{}.AuthLogin()
  15. ////fe5c4b89 2a000000 62 00000000 17000000 31 23 32303234 30393237 3035 3137 3230 3031 23 303630 23ffff
  16. ////fe5c4b89 2a000000 62 00000000 17000000 31 23 32303234 30393239 3037 3137 3237 3535 23 303630 23ffff
  17. //
  18. //fmt.Println("loginBuf", login.Bytes())
  19. //toString := hex.EncodeToString(login.Bytes())
  20. //fmt.Println("toString", toString)
  21. //reply, _ := hex.DecodeString(toString)
  22. //fmt.Println("reply", reply)
  23. //reply, _ := hex.DecodeString("fe5c4b8913000000520000000000000000ffff")
  24. //conn := tcp.DeviceConn["0800075608016688"]
  25. //if conn == nil {
  26. // fmt.Println("Connection is nil")
  27. // return
  28. //}
  29. //conn.Write(reply)
  30. }