LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Serial port polling (https://www.linuxquestions.org/questions/linux-newbie-8/serial-port-polling-711622/)

Sneezie 03-14-2009 03:05 PM

Serial port polling
 
I am building a shell script on a Dreambox (Sat receiver).

What I need to do is sending a command through the serial port to steer my dish. This was easy to do and it worked with no problems at first attempt.

I need to wait for the answer from the other device from the same port (when the dish is in the new desired position. It can take from few seconds to 30-40 seconds), and, after that and only after that, I can continue with the other commands of the script.
I therefore need to poll the serial port and read what the other device answers. Possibly with the least load on the CPU of the machine.
This is what I still cannot do and I would really be very thankful if you could give me a hint on how to do it...


The shell has a very limited number of commands. It is just a subset of the usual shells.
Therefore I need to use very basic commands (compiling a C program is an option, but I would need to delve in crosscompiling and other quite difficult things, for me at least).

I thank you in advance for your help!

Sneezie

MS3FGX 03-15-2009 03:30 PM

Well you only need to print out the contents of the tty file and watch for it match a specific string. You should be able to do something like:

Code:

cat /dev/ttyS0 | grep response
Where response is the line you are waiting for from the dish. That is of course assuming you have grep. If not, then that changes things. It might help to post a list of what commands you actually have available if the shell is really that minimal.

nissenisse 04-06-2009 01:55 AM

Quote:

Originally Posted by Sneezie (Post 3475561)
I am building a shell script on a Dreambox (Sat receiver).

What I need to do is sending a command through the serial port to steer my dish. This was easy to do and it worked with no problems at first attempt.

Can you help me there, then? I have a script for a Dreambox 7020 almost ready, what I need now is how to send a command on the serial port...

MS3FGX 04-06-2009 04:57 PM

Sending a command should look something like:

Code:

echo "command" > /dev/ttyS0

nissenisse 04-06-2009 05:40 PM

Quote:

Originally Posted by MS3FGX (Post 3500497)
Sending a command should look something like:

Code:

echo "command" > /dev/ttyS0

Thanks, I guess the serial port on a 7020 is /dev/ttyS2 (but I'm not sure). I also assume that I may need to do a SETSERIAL command first.


All times are GMT -5. The time now is 04:19 AM.