Here is what I send Eric Lee. However, it does seem to have been
delivered.

I'm glad I can help. I can't send you my source because of company
policy.

However, here is what you'll need. This is a serial application so
you'll need 
to look at an existing serial app. The GPS example is a good start if
you have 
the Oreilly book, Palm Programming Guide, or
http://www.dtek.chalmers.se/groups/pilot/doc/pptdg/
is the online version. Look at Chapter 9, Communications.

The AT command set is a standard for communicating with Modems. I think
it was originally developed
by Hayes. Novatel has provide some enhancements for their modems. It a
simply command response type
protocol. It allows you to set modem parameters and query. I use it for
both.


Code
        err = SysLibFind(SERIAL_LIBRARY, &gSerialRefNum);
        
        err = SerOpen(gSerialRefNum, 0, PORT_SPEED);

        StrCopy(cmd,"ATI?\r");          //The \r is significant

        SerSend(gSerialRefNum,cmd,StrLen(cmd), &err);
        
        //some stuff

        numBytes = SerReceive(gSerialRefNum, receiveBuffer,
numBytesPending, 0, &err);

I hope this helps. And I'm sorry I can't provide a working CW6 project.
If you have any other questions let
me know.

Good luck,

Anthony

-----Original Message-----
From: Torihana Arukas [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 12, 2001 5:08 PM
To: Palm Developer Forum
Subject: MSCI or AT command


Hello--

Does anyone know how to programatically use MSCI protocol or AT command?
I
need some examples of both and if anyone can share with me, that would
be
great!  Any help appreciated.

thanks in advance




-- 
For information on using the Palm Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/tech/support/forums/

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to