| 39 | On Windows Mobile 5.0 for Smartphone, there is no GPS applet, but it's possible to configure GPS Intermediate Driver with registry settings: |
| 40 | |
| 41 | 1. Enable GPS driver |
| 42 | {{{ |
| 43 | [HKEY_LOCAL_MACHINE\System\CurrentControlSet\GPS Intermediate Driver] "IsEnabled"=dword:00000001 |
| 44 | }}} |
| 45 | |
| 46 | 2. Select GPS driver |
| 47 | {{{ |
| 48 | [HKEY_LOCAL_MACHINE\System\CurrentControlSet\GPS Intermediate Driver\Drivers] |
| 49 | "CurrentDriver"="BT GPS" |
| 50 | }}} |
| 51 | |
| 52 | 3. Configure COM port, friendly name and type of driver interface: |
| 53 | {{{ |
| 54 | [HKEY_LOCAL_MACHINE\System\CurrentControlSet\GPS Intermediate Driver\Drivers\BT GPS] |
| 55 | "CommPort"="COMX:" where X = the hardware COM port (for me COM6) |
| 56 | "FriendlyName"="BT GPS" |
| 57 | "InterfaceType"="COMM" |
| 58 | }}} |
| 59 | |
| 60 | For more details, see [http://blogs.msdn.com/windowsmobile/archive/2006/06/07/620387.aspx Setting up GPS on Windows Mobile 5] blog post. |
| 61 | |