I'm realy sorry for asking another question here in a day.
The new problem in detail: I connected an Laser Range Finder from HOKUYO onto my RaspBerryPi.
Connection etc works find, thanks to the serial.py
My only Problem ist, wenn I'm sending a command, I get an echo and a timestamp + \n back.
The data in the buffer looks like this:
MD000007200001\n
2Dh1\n
\n\n
After this, the sensor transmits the measurement, which locks like
MD000007200001\n
2Dh1\n
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C\n
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C\n
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C\n
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C\n
.....
...
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C\n
\n\n
to read these data, at the moment I use readall(). Also tried readlines(). In both cases I got the problem, that have to wait until the timeout, which was set to 1. This takes too much time for a realtime application and the fact, that this sensor can measure every 120ms. If I set the timeout to 0 I often miss some data and everything collapses, because I need the whole dataset for my caluclation.
I also read, that there was an option to set the EOL of readline like readline(eof='\n\n') but with Python 3.x this won't work.
There seems to be a 2nd Option, writing my own readline-function.
But I'm an absolute beginner in python. so I don't know where I should start.
Propably there are some additional options.
Best regards, A.
Adapting the answer at pySerial 2.6: specify end-of-line in readline() (which also offers alternatives), one could write a function such as:
a_serial
must be aserial.Serial
instance built with the proper parameters, of course -- e.g, the defaulttimeout
ofNone
could cause this to block indefinitely if the requiredeol
marker is not forthcoming. This does not appear to be a problem for the OP if I read the question correctly, but, it is something to be aware of in general cases.