service.go 799 B

1234567891011121314151617181920212223242526272829303132333435
  1. package envSensor
  2. import (
  3. "encoding/hex"
  4. "github.com/valyala/bytebufferpool"
  5. )
  6. func (x DataPack) GetEnvGatherCommand() *bytebufferpool.ByteBuffer {
  7. buf := bytebufferpool.Get()
  8. x.Function = 0x03
  9. decodeAddress, _ := hex.DecodeString(x.Address)
  10. buf.Write(decodeAddress)
  11. buf.WriteByte(x.Function)
  12. buf.Write(x.Start)
  13. buf.Write(x.DataLen)
  14. x.Crc = calculateCRC16Modbus(buf.Bytes())
  15. buf.Write([]byte{byte(x.Crc & 0xFF), byte(x.Crc >> 8)})
  16. return buf
  17. }
  18. func calculateCRC16Modbus(data []byte) uint16 {
  19. var crc uint16 = 0xFFFF // CRC-16 初始化值
  20. for _, byteVal := range data {
  21. crc ^= uint16(byteVal) // 对字节进行异或操作
  22. for i := 0; i < 8; i++ {
  23. if crc&0x0001 != 0 {
  24. crc >>= 1
  25. crc ^= 0xA001 // 多项式 0xA001
  26. } else {
  27. crc >>= 1
  28. }
  29. }
  30. }
  31. return crc
  32. }