Using the Symbol.WPAN.Bluetooth class from Motorola EMDK 2.4 I am trying to pair to a device (A zebra MZ220 in this case) to my mobile device (a Motorola MC75a running Windows Mobile 6.5.3).
I pair with the printer as follows:
bluetooth.RemoteDevices.UnPairAll();
RemoteDevice rd = new RemoteDevice(_name, _address, "Serial");
rd.LocalComPort = _commPortNumber;
rd.Pair();
If I try and pair with another printer or even rebind the same printer it sometimes fails because the COM port is unavailable as confirmed by investigating
bluetooth.LocalComPorts;
From my investigations and checking whilst debugging it seems bluetooth.RemoteDevices.UnPairAll(); sometimes frees the COM port but roughly 80% of the time doesn't.
Is there anyway to forcibly free the port using either the Motorola EMDK or any other method?