Skip to content

Commit cb1e647

Browse files
committedApr 5, 2021
finish CRC value fixmes in docs
1 parent 03b4c8d commit cb1e647

18 files changed

+36
-36
lines changed
 

‎packet/readcoilsrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ type ReadCoilsRequestTCP struct {
2323

2424
// ReadCoilsRequestRTU is RTU Request for Read Coils function (FC=01)
2525
//
26-
// Example packet: 0x10 0x01 0x00 0x6B 0x00 0x03 0xFF 0xFF
26+
// Example packet: 0x10 0x01 0x00 0x6B 0x00 0x03 0x0e 0x96
2727
// 0x10 - unit id (0)
2828
// 0x01 - function code (1)
2929
// 0x00 0x6B - start address (2,3)
3030
// 0x00 0x03 - coils quantity to return (4,5)
31-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
31+
// 0x0e 0x96 - CRC16 (6,7)
3232
type ReadCoilsRequestRTU struct {
3333
ReadCoilsRequest
3434
}

‎packet/readcoilsresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadCoilsResponseTCP struct {
2222

2323
// ReadCoilsResponseRTU is RTU Response for Read Coils (FC=01)
2424
//
25-
// Example packet: 0x03 0x01 0x02 0xCD 0x6B 0xFF 0xFF
25+
// Example packet: 0x03 0x01 0x02 0xCD 0x6B 0xd5 0x43
2626
// 0x03 - unit id (0)
2727
// 0x01 - function code (1)
2828
// 0x02 - coils byte count (2)
2929
// 0xCD 0x6B - coils data (2 bytes = 2 // 8 coils) (3,4, ...)
30-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
30+
// 0xd5 0x43 - CRC16 (n-2,n-1)
3131
type ReadCoilsResponseRTU struct {
3232
ReadCoilsResponse
3333
}

‎packet/readdiscreteinputsrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ type ReadDiscreteInputsRequestTCP struct {
2323

2424
// ReadDiscreteInputsRequestRTU is RTU Request for Read Discrete Inputs (FC=02)
2525
//
26-
// Example packet: 0x10 0x02 0x00 0x6B 0x00 0x03 0xFF 0xFF
26+
// Example packet: 0x10 0x02 0x00 0x6B 0x00 0x03 0x4a 0x96
2727
// 0x10 - unit id (0)
2828
// 0x02 - function code (1)
2929
// 0x00 0x6B - start address (2,3)
3030
// 0x00 0x03 - discrete inputs quantity to return (4,5)
31-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
31+
// 0x4a 0x96 - CRC16 (6,7)
3232
type ReadDiscreteInputsRequestRTU struct {
3333
ReadDiscreteInputsRequest
3434
}

‎packet/readdiscreteinputsresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadDiscreteInputsResponseTCP struct {
2222

2323
// ReadDiscreteInputsResponseRTU is RTU Response for Read Discrete Inputs (FC=02)
2424
//
25-
// Example packet: 0x03 0x02 0x02 0xCD 0x6B 0xFF 0xFF
25+
// Example packet: 0x03 0x02 0x02 0xCD 0x6B 0xd5 0x07
2626
// 0x03 - unit id (0)
2727
// 0x02 - function code (1)
2828
// 0x02 - inputs byte count (2)
2929
// 0xCD 0x6B - inputs data (2 bytes = 2 // 8 inputs) (3,4, ...)
30-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
30+
// 0xd5 0x07 - CRC16 (n-2,n-1)
3131
type ReadDiscreteInputsResponseRTU struct {
3232
ReadDiscreteInputsResponse
3333
}

‎packet/readholdingregistersrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadHoldingRegistersRequestTCP struct {
2222

2323
// ReadHoldingRegistersRequestRTU is RTU Request for Read Holding Registers (FC=03)
2424
//
25-
// Example packet: 0x01 0x03 0x00 0x6B 0x00 0x01 0xFF 0xFF
25+
// Example packet: 0x01 0x03 0x00 0x6B 0x00 0x01 0xf5 0xd6
2626
// 0x01 - unit id (0)
2727
// 0x03 - function code (1)
2828
// 0x00 0x6B - start address (2,3)
2929
// 0x00 0x01 - holding registers quantity to return (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0xf5 0xd6 - CRC16 (6,7)
3131
type ReadHoldingRegistersRequestRTU struct {
3232
ReadHoldingRegistersRequest
3333
}

‎packet/readholdingregistersresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadHoldingRegistersResponseTCP struct {
2222

2323
// ReadHoldingRegistersResponseRTU is RTU Request for Read Holding Registers (FC=03)
2424
//
25-
// Example packet: 0x01 0x03 0x02 0xCD 0x6B 0xFF 0xFF
25+
// Example packet: 0x01 0x03 0x02 0xCD 0x6B 0xad 0x3b
2626
// 0x01 - unit id (0)
2727
// 0x03 - function code (1)
2828
// 0x02 - returned registers byte count (2)
2929
// 0xCD 0x6B - holding registers data (1 register) (3,4, ... 2 bytes for each register)
30-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
30+
// 0xad 0x3b - CRC16 (n-2,n-1)
3131
type ReadHoldingRegistersResponseRTU struct {
3232
ReadHoldingRegistersResponse
3333
}

‎packet/readinputregistersrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadInputRegistersRequestTCP struct {
2222

2323
// ReadInputRegistersRequestRTU is RTU Request for Read Input Registers (FC=04)
2424
//
25-
// Example packet: 0x01 0x04 0x00 0x6B 0x00 0x01 0xFF 0xFF
25+
// Example packet: 0x01 0x04 0x00 0x6B 0x00 0x01 0x40 0x16
2626
// 0x01 - unit id (0)
2727
// 0x04 - function code (1)
2828
// 0x00 0x6B - start address (2,3)
2929
// 0x00 0x01 - input registers quantity to return (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0x40 0x16 - CRC16 (6,7)
3131
type ReadInputRegistersRequestRTU struct {
3232
ReadInputRegistersRequest
3333
}

‎packet/readinputregistersresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadInputRegistersResponseTCP struct {
2222

2323
// ReadInputRegistersResponseRTU is RTU Request for Read Input Registers (FC=04)
2424
//
25-
// Example packet: 0x01 0x04 0x02 0xCD 0x6B 0xFF 0xFF
25+
// Example packet: 0x01 0x04 0x02 0xCD 0x6B 0xac 0x4f
2626
// 0x01 - unit id (0)
2727
// 0x04 - function code (1)
2828
// 0x02 - returned registers byte count (2)
2929
// 0xCD 0x6B - input registers data (1 register) (3,4, ... 2 bytes for each register)
30-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
30+
// 0xac 0x4f - CRC16 (n-2,n-1)
3131
type ReadInputRegistersResponseRTU struct {
3232
ReadInputRegistersResponse
3333
}

‎packet/readwritemultipleregistersrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type ReadWriteMultipleRegistersRequestTCP struct {
2828

2929
// ReadWriteMultipleRegistersRequestRTU is RTU Request for Read / Write Multiple Registers (FC=23)
3030
//
31-
// Example packet: 0x11 0x17 0x04 0x10 0x00 0x01 0x01 0x12 0x00 0x02 0x04 0x00 0xc8 0x00 0x82 0xFF 0xFF
31+
// Example packet: 0x11 0x17 0x04 0x10 0x00 0x01 0x01 0x12 0x00 0x02 0x04 0x00 0xc8 0x00 0x82 0x64 0xe2
3232
// 0x11 - unit id (0)
3333
// 0x17 - function code (1)
3434
// 0x04 0x10 - read registers start address (2,3)
@@ -37,7 +37,7 @@ type ReadWriteMultipleRegistersRequestTCP struct {
3737
// 0x00 0x02 - write quantity (8,9)
3838
// 0x04 - write bytes count (10)
3939
// 0x00 0xc8 0x00 0x82 - write registers data (2 registers) (11,12, ...)
40-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
40+
// 0x64 0xe2 - CRC16 (n-2,n-1)
4141
type ReadWriteMultipleRegistersRequestRTU struct {
4242
ReadWriteMultipleRegistersRequest
4343
}

‎packet/readwritemultipleregistersresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type ReadWriteMultipleRegistersResponseTCP struct {
2222

2323
// ReadWriteMultipleRegistersResponseRTU is RTU Response for Read / Write Multiple Registers request (FC=23)
2424
//
25-
// Example packet: 0x11 0x17 0x02 0xCD 0x6B 0xFF 0xFF
25+
// Example packet: 0x11 0x17 0x02 0xCD 0x6B 0x69 0x08
2626
// 0x11 - unit id (0)
2727
// 0x17 - function code (1)
2828
// 0x02 - registers bytes count (2)
2929
// 0xCD 0x6B - write registers data (1 registers) (3, 4, ...)
30-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
30+
// 0x69 0x08 - CRC16 (n-2,n-1)
3131
type ReadWriteMultipleRegistersResponseRTU struct {
3232
ReadWriteMultipleRegistersResponse
3333
}

‎packet/writemultiplecoilsrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ type WriteMultipleCoilsRequestTCP struct {
2525

2626
// WriteMultipleCoilsRequestRTU is RTU Request for Write Multiple Coils (FC=15)
2727
//
28-
// Example packet: 0x11 0x0F 0x04 0x10 0x00 0x03 0x01 0x05 0xFF 0xFF
28+
// Example packet: 0x11 0x0F 0x04 0x10 0x00 0x03 0x01 0x05 0x8e 0x1f
2929
// 0x11 - unit id (0)
3030
// 0x0F - function code (1)
3131
// 0x04 0x10 - start address (2,3)
3232
// 0x00 0x03 - count of coils to write (4,5)
3333
// 0x01 - coils byte count (6)
3434
// 0x05 - coils data (7, ...)
35-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
35+
// 0x8e 0x1f - CRC16 (n-2,n-1)
3636
type WriteMultipleCoilsRequestRTU struct {
3737
WriteMultipleCoilsRequest
3838
}

‎packet/writemultiplecoilsresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type WriteMultipleCoilsResponseTCP struct {
2222

2323
// WriteMultipleCoilsResponseRTU is RTU Response for Write Multiple Coils (FC=15)
2424
//
25-
// Example packet: 0x11 0x0F 0x04 0x10 0x00 0x03 0xFF 0xFF
25+
// Example packet: 0x11 0x0F 0x04 0x10 0x00 0x03 0x17 0xaf
2626
// 0x11 - unit id (0)
2727
// 0x0F - function code (1)
2828
// 0x04 0x10 - start address (2,3)
2929
// 0x00 0x03 - count of coils written (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0x17 0xaf - CRC16 (6,7)
3131
type WriteMultipleCoilsResponseRTU struct {
3232
WriteMultipleCoilsResponse
3333
}

‎packet/writemultipleregistersrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ type WriteMultipleRegistersRequestTCP struct {
2626

2727
// WriteMultipleRegistersRequestRTU is RTU Request for Write Multiple Registers (FC=16)
2828
//
29-
// Example packet: 0x11 0x10 0x04 0x10 0x00 0x03 0x06 0x00 0xC8 0x00 0x82 0x87 0x01 0xFF 0xFF
29+
// Example packet: 0x11 0x10 0x04 0x10 0x00 0x03 0x06 0x00 0xC8 0x00 0x82 0x87 0x01 0x2f 0x7d
3030
// 0x11 - unit id (0)
3131
// 0x10 - function code (1)
3232
// 0x04 0x10 - start address (2,3)
3333
// 0x00 0x03 - count of register to write (4,5)
3434
// 0x06 - registers byte count (6)
3535
// 0x00 0xC8 0x00 0x82 0x87 0x01 - registers data (7,8, ...)
36-
// 0xFF 0xFF - CRC16 (n-2,n-1) // FIXME: add correct crc value example
36+
// 0x2f 0x7d - CRC16 (n-2,n-1)
3737
type WriteMultipleRegistersRequestRTU struct {
3838
WriteMultipleRegistersRequest
3939
}

‎packet/writemultipleregistersresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type WriteMultipleRegistersResponseTCP struct {
2222

2323
// WriteMultipleRegistersResponseRTU is RTU Response for Write Multiple Registers (FC=16)
2424
//
25-
// Example packet: 0x11 0x10 0x04 0x10 0x00 0x03 0xFF 0xFF
25+
// Example packet: 0x11 0x10 0x04 0x10 0x00 0x03 0x82 0x6d
2626
// 0x11 - unit id (0)
2727
// 0x10 - function code (1)
2828
// 0x04 0x10 - start address (2,3)
2929
// 0x00 0x03 - count of registers written (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0x82 0x6d - CRC16 (6,7)
3131
type WriteMultipleRegistersResponseRTU struct {
3232
WriteMultipleRegistersResponse
3333
}

‎packet/writesinglecoilrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ type WriteSingleCoilRequestTCP struct {
3030
// For example: coil at address 1 is turned on '0x00 0x01 0xFF 0x00'
3131
// For example: coil at address 10 is turned off '0x00 0x0A 0x00 0x00'
3232
//
33-
// Example packet: 0x11 0x05 0x00 0x6B 0xFF 0x00 0xFF 0xFF
33+
// Example packet: 0x11 0x05 0x00 0x6B 0xFF 0x00 0xff 0x76
3434
// 0x11 - unit id (0)
3535
// 0x05 - function code (1)
3636
// 0x00 0x6B - start address (2,3)
3737
// 0xFF 0x00 - coil data (true) (4,5)
38-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
38+
// 0xff 0x76 - CRC16 (6,7)
3939
type WriteSingleCoilRequestRTU struct {
4040
WriteSingleCoilRequest
4141
}

‎packet/writesinglecoilresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ type WriteSingleCoilResponseTCP struct {
3030
// For example: coil at address 1 is turned on '0x00 0x01 0xFF 0x00'
3131
// For example: coil at address 10 is turned off '0x00 0x0A 0x00 0x00'
3232
//
33-
// Example packet: 0x03 0x05 0x00 0x02 0xFF 0x00 0xFF 0xFF
33+
// Example packet: 0x03 0x05 0x00 0x02 0xFF 0x00 0x2c 0x18
3434
// 0x03 - unit id (0)
3535
// 0x05 - function code (1)
3636
// 0x00 0x02 - start address (2,3)
3737
// 0xFF 0x00 - coil data (true) (4,5)
38-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
38+
// 0x2c 0x18 - CRC16 (6,7)
3939
type WriteSingleCoilResponseRTU struct {
4040
WriteSingleCoilResponse
4141
}

‎packet/writesingleregisterrequest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type WriteSingleRegisterRequestTCP struct {
2222

2323
// WriteSingleRegisterRequestRTU is RTU Request for Write Single Register (FC=06)
2424
//
25-
// Example packet: 0x11 0x06 0x00 0x6B 0x01 0x01 0xFF 0xFF
25+
// Example packet: 0x11 0x06 0x00 0x6B 0x01 0x01 0x3a 0xd6
2626
// 0x11 - unit id (0)
2727
// 0x06 - function code (1)
2828
// 0x00 0x6B - start address (2,3)
2929
// 0x01 0x01 - register data (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0x3a 0xd6 - CRC16 (6,7)
3131
type WriteSingleRegisterRequestRTU struct {
3232
WriteSingleRegisterRequest
3333
}

‎packet/writesingleregisterresponse.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ type WriteSingleRegisterResponseTCP struct {
2222

2323
// WriteSingleRegisterResponseRTU is RTU Response for Write Single Register (FC=06)
2424
//
25-
// Example packet: 0x11 0x06 0x00 0x6B 0x01 0x01 0xFF 0xFF
25+
// Example packet: 0x11 0x06 0x00 0x6B 0x01 0x01 0x3a 0xd6
2626
// 0x11 - unit id (0)
2727
// 0x06 - function code (1)
2828
// 0x00 0x6B - start address (2,3)
2929
// 0x01 0x01 - register data (4,5)
30-
// 0xFF 0xFF - CRC16 (6,7) // FIXME: add correct crc value example
30+
// 0x3a 0xd6 - CRC16 (6,7)
3131
type WriteSingleRegisterResponseRTU struct {
3232
WriteSingleRegisterResponse
3333
}

0 commit comments

Comments
 (0)
Please sign in to comment.