This is a discussion on Serial communication within the Linux Networking forums, part of the Linux Forums category; Hi, I need to establish an automatic communication on a serial line with a gsm. I'm wondering whether it ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I need to establish an automatic communication on a serial line with a gsm. I'm wondering whether it is possible to issue some commands in a script fashion so that I have not to put commands by hand every time I need to send a SMS, for instance. I'd like not to spend too much time making a C program. What I need it is a method to feed a serial terminal (like cu or minicom) with scripted command, skipping the interactive mode. Thanks |
|
|||
|
On Thu, 13 Mar 2008 10:51:01 -0700, frances.albanese wrote:
[...] > What I need it is a method to feed a serial terminal (like cu or > minicom) with scripted command, skipping the interactive mode. I would and do use c-kermit for this. Do a web search for "c-kermit". Gene (e-mail: gene \a\t eracc \d\o\t com) -- Mandriva Linux release 2007.1 (Official) for i586 Got Rute? http://www.anrdoezrs.net/email-25465...sbn=0130333514 ERA Computers & Consulting - http://www.eracc.com/ Preloaded PCs - eComStation, Linux, FreeBSD, OpenServer & UnixWare |
|
|||
|
On 2008-03-13, frances.albanese@gmail.com <frances.albanese@gmail.com> wrote:
> > > Hi, > I need to establish an automatic communication on a serial line with a > gsm. I'm wondering whether it is possible to issue some commands in a > script fashion so that I have not to put commands by hand every time I > need to send a SMS, for instance. I'd like not to spend too much time > making a C program. > What I need it is a method to feed a serial terminal (like cu or > minicom) with scripted command, skipping the interactive mode. > > Thanks echo hello > /dev/ttyS0 or exec 3>/dev/ttyS0 echo hello >&3 If you need to wait for a response from the device, you could use chat or expect. |
|
|||
|
frances.albanese@gmail.com writes:
>Hi, Ho! >I need to establish an automatic communication on a serial line with a >gsm. I'm wondering whether it is possible to issue some commands in a >script fashion >What I need it is a method to feed a serial terminal (like cu or >minicom) with scripted command, skipping the interactive mode. What about minicom? http://www.google.de/linux?hl=de&q=m...nG=Suche&meta= good luck, Holger |