Hello!
When I request a preview picture for 80x60 in RAW I consistently get the correct picture-size of 4800 bytes. This works up to 160x120 without any problems.
At a resolution of 320x240 the returned picture-size is only 11520 bytes instead of 76800 and I only receive 76445 bytes.
Since the bytes that indicate the pictureSize are consisten and easy to find (AA,0A,02,b1,b2,b3) and the calculation works i can't see where the problem might be.
Example at 320x240 - Serial buffer being: 170, 10, 2, 0, 44, 1
[HTML]
for (int i = 0; i < 200; i++){ Thread.Sleep(1); if (bufferLength == 12) { pictureSize = (UInt16)(serialBuffer[5]
When I request a preview picture for 80x60 in RAW I consistently get the correct picture-size of 4800 bytes. This works up to 160x120 without any problems.
At a resolution of 320x240 the returned picture-size is only 11520 bytes instead of 76800 and I only receive 76445 bytes.
Since the bytes that indicate the pictureSize are consisten and easy to find (AA,0A,02,b1,b2,b3) and the calculation works i can't see where the problem might be.
Example at 320x240 - Serial buffer being: 170, 10, 2, 0, 44, 1
[HTML]
for (int i = 0; i < 200; i++){ Thread.Sleep(1); if (bufferLength == 12) { pictureSize = (UInt16)(serialBuffer[5]
Comment