On section 2.3 of CRC16 computation of this:
https://www.mennegat.nl/media/shop_item/Mezzo_Doc_1.1.0.pdf
It tries to explain how to calculate the checksum. I have a working example which calculates
d37ccb00526000000014000000
As a checksum of:
0825
The entire payload of the UDP packet being
02d37ccb00526000000014000000082503
The device responds as it is a fully acceptable packet. I just cant seem to figure out with all the example crc checks to find a 16 bit match out there of 0825.
We use the following 16 bit crc checks which I dont think any of them output 0825 as the result.
https://github.com/sigurn/crc16/blob/master/crc16.go#L26-L48
Thanks for your help!