You can test your VxD by experimenting with changing the speeds at which your dongles transmit and receive. You can use the baud rate negotiation logic that is built into the IR communications software. When two dongles recognize each other, they start communicating at 9600 baud and then tryout higher speeds until the highest baud rate each dongle is capable of is reached. By changing the values in the baud rate mask in the type_Init function of your OEMDONGL.C source code between sessions, you can experiment with higher and higher baud rates in each communications session between your two dongles.
For example, here is one experimental scenario:
#define RED88_SPEEDMASK 0x00000002
#define RED88_SPEEDMASK 0x00000006
You can use this same process to try the dongles at other baud rates all the way up to 115200, if they are capable of it. The bit pattern settings in the baud rate capabilities mask for all these baud rates are shown in Adapting the type_Init Function.