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.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. 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 { minimal, common, ardupilotmega, uavionix, icarous } from 'node-mavlink'
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 => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-mavlink",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "author": "Matthias Hryniszak <padcom@gmail.com>",
5
5
  "license": "LGPL",
6
6
  "description": "MavLink definitions and parsing library",