node-mavlink 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -38,7 +38,10 @@ That's it! That is all it takes to read the raw data. But it doesn't end there -
|
|
38
38
|
Each message consists of multiple fields that contain specific data. Parsing the data is also very easy.
|
39
39
|
|
40
40
|
```javascript
|
41
|
-
import {
|
41
|
+
import {
|
42
|
+
minimal, common, ardupilotmega, uavionix, icarous,
|
43
|
+
asluav, development, matrixpilot, paparazzi, ualberta,
|
44
|
+
} from 'node-mavlink'
|
42
45
|
|
43
46
|
// create a registry of mappings between a message id and a data class
|
44
47
|
const REGISTRY = {
|
@@ -47,6 +50,11 @@ const REGISTRY = {
|
|
47
50
|
...ardupilotmega.REGISTRY,
|
48
51
|
...uavionix.REGISTRY,
|
49
52
|
...icarous.REGISTRY,
|
53
|
+
...asluav.REGISTRY,
|
54
|
+
...development.REGISTRY,
|
55
|
+
...matrixpilot.REGISTRY,
|
56
|
+
...paparazzi.REGISTRY,
|
57
|
+
...ualberta.REGISTRY,
|
50
58
|
}
|
51
59
|
|
52
60
|
reader.on('data', packet => {
|