Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
09-01-2006, 12:15 PM
|
#1
|
Member
Registered: Jan 2002
Posts: 162
Rep:
|
Should be dead simple - read/write serial port from bash
Hi, I can only use bash for this and although there are many C examples just need the basics of reading & writing to a serial port, its controlling a modem.
I'm trying things like this
#!/bin/sh
echo ATD555667676; > /dev/ttyS1
read LINE < /dev/ttyS1
echo $LINE
but its not sending it (minicom is fine, its not a hardware problem).
Basically I just need the read and write commands, I want to do things like "Send AT", wait for "OK", "Dial number" when recieved, if "BUSY" then blah blah...
Thanks in advance
|
|
|
09-01-2006, 12:21 PM
|
#2
|
Member
Registered: Aug 2003
Location: Mocksville, NC, USA
Distribution: Gentoo, Slackware.
Posts: 410
Rep:
|
Quote:
Originally Posted by ericcarlson
Hi, I can only use bash for this and although there are many C examples just need the basics of reading & writing to a serial port, its controlling a modem.
I'm trying things like this
#!/bin/sh
echo ATD555667676; > /dev/ttyS1
read LINE < /dev/ttyS1
echo $LINE
but its not sending it (minicom is fine, its not a hardware problem).
Basically I just need the read and write commands, I want to do things like "Send AT", wait for "OK", "Dial number" when recieved, if "BUSY" then blah blah...
Thanks in advance
|
take away that ; that you have in between the ATD string and the > /dev/ttyS1.
echo ATD555667676 > /dev/ttyS1
|
|
|
10-21-2006, 02:04 PM
|
#3
|
Member
Registered: Jul 2005
Location: /dev/ATX3
Distribution: Slackware 11(kernel 2.6.17.13), SuSE 10, Caldera, CentOS 4.3
Posts: 38
Rep:
|
Hi
I'm having some troubles reading the serial por using cat /dev/ttyS0 since the data received does not have the return carriage (char 13), insted of it uses the char 20 to idicate the end of transmission.
Any sugestions how to print or read the buffer without using cat
Mario
|
|
|
10-21-2006, 08:35 PM
|
#4
|
Member
Registered: May 2004
Posts: 552
Rep:
|
How are you setting the baud rate and flow control parameters. Modems are especially picky.
|
|
|
All times are GMT -5. The time now is 02:48 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|