---------------------------------------------------------------------- Date: 22 Oct 1999 09:04:08 -0700 From: Jimmy Stricker Subject: RE: IR without IRDA You don't have to use the IRDA stack, you can use your own protocol through the IR by using the serial library. All you have to do is enable the the IR port. #ifdef PALM_PRO err = SysLibFind("IrSerial Library", &pDcb->hComm); #else err = SysLibFind("Serial Library", &pDcb->hComm); #endif err |= SerOpen(pDcb->hComm,0,pDcb->baudRate); emSetBaud(pDcb); if (pDcb->echoOn != 0) { SerControl(pDcb->hComm, serCtlIrDAEnable, 0, 0); } if (err == 0) sts = EM_STS_OK; This snipit will use the IR port to send and recieve my own custom protocol. Hope this helps, Jimmy