Any data that I can read.
In the meantime, I managed to read datablocks that are coming out rapidly of my Pi, such as:
b’MSG,4,1,1,868012,1,2021/12/16,20:55:42.941,2021/12/16,20:55:42.996,480,56,0,0\r\nMSG,8,1,1,485870,1,2021/12/16,20:55:42.944,2021/12/16,20:55:42.996,0\r\nMSG,7,1,1,440589,1,2021/12/16,20:55:42.945,2021/12/16,20:55:42.996,1800,\r\nMSG,5,1,1,485870,1,2021/12/16,20:55:42.950,2021/12/16,20:55:42.997,2850,-960,0,0,\r\nMSG,8,1,1,471F34,1,2021/12/16,20:55:42.959,2021/12/16,20:55:42.999,0\r\nMSG,5,1,1,485870,1,2021/12/16,20:55:42.964,2021/12/16,20:55:43.000,2850,0,0,\r\nMSG,4,1,1,4CA27A,1,2021/12/16,20:55:42.969,2021/12/16,20:55:43.001,235,82,-1344,0\r\nMSG,3,1,1,484CB4,1,2021/12/16,20:55:42.979,2021/12/16,20:55:43.003,3350,52.29916,4.63756,0,0,0\r\nMSG,3,1,1,780AC8,1,2021/12/16,20:55:42.979,2021/12/16,20:55:43.003,38600,52.99864,3.00041,0,0,0\r\nMSG,7,1,1,868012,1,2021/12/16,20:55:42.983,2021/12/16,20:55:43.003,33000,\r\nMSG,4,1,1,471F34,1,2021/12/16,20:55:42.987,2021/12/16,20:55:43.004,404,302,-64,0\r\nMSG,5,1,1,484133,1,2021/12/16,20:55:42.989,2021/12/16,20:55:43.004,25825,0,0,\r\nMSG,3,1,1,471F34,1,2021/12/16,20:55:42.992,2021/12/16,20:55:43.005,38000,53.51273,2.88359,0,0,0\r\nMSG,5,1,1,440589,1,2021/12/16,20:55:43.022,2021/12/16,20:55:43.059,1800,194,92,0,0,\r\n’
I understand these are of type ‘byte’ in Python which I can subsequently decode into a list.
And so currently I am puzzling these datablocks into dictionaries and see how I can manipulate these block with time to spare to build a DataFrame, and be ready to receive the next datablock!