![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Serial communication
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 |
|
|||
|
Re: Serial communication
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 |
|
|||
|
Re: Serial communication
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. |
|
|||
|
Re: Serial communication
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 |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|