On Sun, Dec 27, 2020 at 11:22:22AM +0530, Sonali Warunjikar wrote: > arr = [ 0x00, 0x12, 0x80, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x12 ]
To mimic: 1.022.000 S Ci 0012 80 06 0100 0000 0012 Have also tried dropping the first two elements, which may not be a part of the message i.e. arr = [ 0x80, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x12 ] Not sure how to interpret 0012 reported by usbmon - is it 00, 12 or 12, 00. Anyway, tried the other way also: arr = [ 0x80, 0x06, 0x00, 0x01, 0x00, 0x00, 0x12, 0x00 ] All of these lead to the same i/o error

