latitude5450/README.md

44 lines
1.4 KiB
Markdown
Raw Normal View History

2014-11-23 15:37:40 +01:00
## Dell Latitude E5*50 Linux support
2014-11-24 17:00:19 +01:00
Tested on my Dell Latitude E5450 (late 2014) with Fedora 21 64bit, BIOS A02.
2014-11-23 15:37:40 +01:00
### WWAN module
2014-11-24 13:14:05 +01:00
Dell Latitude E5*50 laptops could have a "Dell Wireless 5809e Gobi™ 4G LTE Mobile Broadband Card" WWAN module installed. This WWAN device is based on the Qualcomm Gobi™.
2014-11-23 15:37:40 +01:00
2014-11-23 15:42:48 +01:00
| | |
|---|---|
| Name | Dell Wireless 5809e Gobi™ 4G LTE Mobile Broadband Card |
| ID | 413c:81b1 |
| Kernel module | qcserial |
2014-11-23 15:37:40 +01:00
2014-11-24 13:15:33 +01:00
The device id of this Gobi™ module is still missing from the ```qcserial``` devices table, so I created a udev rule which loads the ```qcserial``` module, switchs the ```bConfigurationValue``` from 2 to 1** and adds the new device id ```413c:81b1``` to the ```qcserial``` driver.
2014-11-24 13:06:59 +01:00
** By default the device is loaded in the ```cdc_mbim``` mode (see https://www.kernel.org/doc/Documentation/networking/cdc_mbim.txt) instead in the classic serial modem mode.
2014-11-24 09:53:53 +01:00
#### GPS ####
To start the GPS
```bash
echo "\$GPS_START" > /dev/ttyUSB0
```
To stop the GPS
```bash
echo "\$GPS_STOP" > /dev/ttyUSB0
```
2014-11-24 13:23:33 +01:00
In the ```bin``` folder you can find an utility (```gobigps```) to easily start and stop the GPS. To be able to use this utility as normal user (more in general, to use the GPS) the user must be member of the ```dialout``` group.
You can check if the GPS is running with a simple ```cat```
```bash
cat /dev/ttyUSB0
```
or using _QGIS_.
2014-11-24 13:14:48 +01:00
Work is still in progress!