How to activate IRDA(Infrared) connection?

How to activate IRDA(Infrared) connection?

Postby vilian » Fri Feb 23, 2007 1:20 pm

Hi,

When use the IExplorer in the Pocket connection IRDA automatically is activated if already it will not be connected.. We have as to make this activation with the FwPpc?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby Antonio Linares » Sat Feb 24, 2007 9:58 am

Vilian,

From Programming Microsoft Windows CE - second edition:

The Infrared Port
Windows CE devices almost always have an infrared IrDA-compatible serial port. In fact, all H/PC and Pocket PC systems are guaranteed to have one. The IR ports on Windows CE devices are IrDA (Infrared Data Association) compliant. The IrDA standard specifies everything from the physical implementation, such as the frequency of light used, to the handshaking between devices and how remote systems find each other and converse.

The IR port can be used in a variety of ways. At the most basic level, the port can be accessed as a serial port with an IR transmitter and receiver attached. This method is known as raw IR. When you're using raw IR, the port isn't IrDA compliant because the IrDA standard requires the proper handshaking for the link. However, raw IR gives you the most control over the IR link. A word of warning: While all Windows CE devices I know currently support raw IR, some might not in the future.

You can also use the IR port in IrComm mode. In this mode, the IR link looks like a serial port. However, under the covers, Windows CE works to hide the differences between a standard serial port and the IR link. This is perhaps the easiest way to link two custom applications because the applications can use the rather simple Comm API, while Windows CE uses the IrDA stack to handle the IR link.

The most robust and complex method of using the IR port is to use IrSock. In this mode, the IR link appears to be just another socket. IrSock is an extension of WinSock, the Windows version of the socket interface used by applications communicating with TCP/IP. I'll cover WinSock in Chapter 10, so I'll defer any talk of IrSock until then.

Raw IR
As I mentioned previously, when you use raw IR you're mainly on your own. You essentially have a serial port with an IR transceiver attached to it. Since both the transmitter and the receiver use the same ether (the air), collisions occur if you transmit at the same time that you're receiving a stream of data from another device. This doesn't happen when a serial cable connects two serial ports because the cable gives you separate transmit and receive wires that can be used at the same time.

Finding the Raw IR Port
To use raw IR, you must first find the serial port attached to the IR transceiver. On some Windows CE units, the serial port and the IR port use the same serial hardware. This means you can't use the serial port at the same time you use the IR port. Other Windows CE devices have separate serial hardware for the IR port. Regardless of how a device is configured, Windows CE gives you a separate instance of a COM driver for the IR port that's used for raw IR mode.

There is no official method of determining the COM port used for raw IR. However, the following technique works for current devices. To find the COM port used for raw IR, look in the registry in the \Comm\IrDA key under HKEY_LOCAL_MACHINE. There you should find the Port value that contains the COM port number for the raw IR device.

If the Port value isn't there, check for a Parms subkey. If that is present, look for the Port value under it. If not, check for a Linkage subkey. If the Linkage subkey is present, check for a Bind value. If present, it will contain the name of another key under [HKEY_LOCAL_MACHINE]\Comm that you can open and repeat the process. Following are two routines, GetRawIrDeviceName and a recursive helper routine, that return the device name of the raw IR port.

Code: Select all  Expand view
//----------------------------------------------------------------------// GetRawIrDeviceName - Returns the device name for the RawIR COM port//INT GetRawIrDeviceName (LPTSTR lpszDevName) {        *lpszDevName = TEXT (`\0');    return QueryIrKey (TEXT ("IrDA"), lpszDevName);}//// Helper routine that walks the linkage chain//INT QueryIrKey (LPTSTR lpszSubkeyName, LPTSTR lpszDevName) {    DWORD dwSize, dwType, dwData;    HKEY hKey, hSubkey;    TCHAR szBind[64];    int rc;        // Open the IrDA key.    lstrcpy (szBind, TEXT ("\\Comm\\"));    lstrcat (szBind, lpszSubkeyName);    rc = RegOpenKeyEx (HKEY_LOCAL_MACHINE, szBind, 0, 0, &hKey);    if (rc == ERROR_SUCCESS) {         // Query the device number.        dwSize = sizeof (dwData);        rc = RegQueryValueEx (hKey, TEXT ("Port"), 0, &dwType,                               (PBYTE)&dwData, &dwSize);        if (rc == ERROR_SUCCESS) {             // Check for valid port number. Assume buffer > 5 chars.            if (dwData < 10)                wsprintf (lpszDevName, TEXT ("COM%d:"), dwData);        } else {            // The key doesn't have a port value. Check to see if             // there is a Parms subkey, and query it.            lstrcpy (szBind, lpszSubkeyName);            lstrcat (szBind, TEXT ("\\parms"));            rc = QueryIrKey (szBind, lpszDevName);            if (rc)                return rc;                        // The key doesn't have a port value or Parms subkey.             // Check to see if there is a linkage to another reg key.            rc = RegOpenKeyEx (hKey, TEXT ("linkage"), 0, 0, &hSubkey);            if (rc == ERROR_SUCCESS) {                // Yes, get the name of the key to check.                dwSize = sizeof (szBind);                rc = RegQueryValueEx (hSubkey, TEXT ("Bind"), 0, &dwType,                                       (PBYTE)&szBind, &dwSize);                 // Recurse to examine the linked reg key.                QueryIrKey (szBind, lpszDevName);                RegCloseKey (hSubkey);            }        }        RegCloseKey (hKey);    }    return lstrlen (lpszDevName);}


Using Raw IR
Once you have the port name, you must perform one more task before you can use the port. If the COM port hardware is being shared by the serial port and the IR port, you must tell the driver to direct the serial stream through the IR transceiver. You do this by first opening the device and calling EscapeCommFunction. The command passed to the device is SETIR. When you've finished using the IR port, you should call EscapeCommFunction again with the command CLRIR to return the port back to its original serial function.

Once the port is set up, there's one main difference between raw IR and standard serial communication. You have to be careful when using raw IR, not to transmit while another device is also transmitting. The two transmissions will collide, corrupting both data streams. With raw IR, you're also responsible for detecting the other device and handling the dropped bytes that will occur as the infrared beam between the two devices is occasionally broken.

IrComm
Using IrComm is much easier than using raw IR. IrComm takes care of remote device detection, collision detection, and data buffering while communication with the other device is temporally interrupted. The disadvantage of IrComm is that it's a point-to-point protocol—only two devices can be connected. In most instances, however, this is sufficient.

Finding the IrComm Port
Here again, there's no official method for determining the IrComm port. But you should be able to find the IrComm port by looking in the registry under the Drivers\builtin\IrCOMM key under HKEY_LOCAL_MACHINE. The item to query is the Index value, which is the COM device number for the IrComm port. Following is a routine that returns the device name of the IrComm port.

Code: Select all  Expand view
//----------------------------------------------------------------------// GetIrCommDeviceName - Returns the device name for the IrComm port//INT GetIrCommDeviceName (LPTSTR pDevName) {    DWORD dwSize, dwType, dwData;    HKEY hKey;     *pDevName = TEXT (`\0');    // Open the IrDA key.    if (RegOpenKeyEx (HKEY_LOCAL_MACHINE,                      TEXT ("Drivers\\BuiltIn\\IrCOMM"), 0,                      0, &hKey) == ERROR_SUCCESS) {         // Query the device number.        dwSize = sizeof (dwData);        if (RegQueryValueEx (hKey, TEXT ("Index"), 0, &dwType,                             (PBYTE)&dwData, &dwSize) == ERROR_SUCCESS)             // Check for valid port number. Assume buffer > 5 chars.            if (dwData < 10)                wsprintf (pDevName, TEXT ("COM%d:"), dwData);         RegCloseKey (hKey);    }    return lstrlen (pDevName);}


The IrComm port is different in a number of ways from the serial port and the raw IR port. These differences arise from the fact that the IrComm port is a simulated port, not a real device. The IrComm driver uses IrSock to manage the IR link. The driver is then responsible only for reflecting the data stream and a few control characters to simulate the serial connection. If you try to query the communication settings for the IrComm port using GetCommState, the DCB returned is all zeros. If you try to set a baud rate or some of the other parameters, and later call GetCommState again, the DCB will still be 0. IrSock manages the speed and the handshaking protocol, so IrComm simply ignores your configuration requests.

On the other hand, the IrComm driver happily queues up pending writes waiting on another IrComm device to come within range. After the IrComm driver automatically establishes a link, it transmits the pending bytes to the other device. This assistance is a far cry from raw IR and is what makes using IrComm so easy.

The best way to learn about the characteristics of the two methods of IR communication I've described is to use them. Which brings us to this chapter's example program.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41324
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby vilian » Tue Feb 27, 2007 12:25 am

Hi Antonio,

I find that you it did not understand me. What I want is only to execute from my system the module standard of Windows CE for connection IRDA.

The same module that the IExplore executes when the connection is not active.
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil


Return to FiveWin for Pocket PC

Who is online

Users browsing this forum: No registered users and 3 guests