
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
node-mavlink-debugger
Advanced tools
It's a silly thing, but if you want to verify what other tools understand from the packets you received it's good to have the data to feed it in.
This simple filter takes the packet and dumps it onto console in such a form that can be copy-pasted into mission-planner.
To install the package issue the following command:
$ npm install --save node-mavlink-debugger
The simplest usage is to just .pipe() it in just after the packet parser:
import { SerialPort } from 'serialport'
import {
MavLinkPacket,
MavLinkPacketParser,
MavLinkPacketSplitter
} from 'node-mavlink'
import { mavdbg } from 'node-mavlink-debugger'
new SerialPort({ path: '/dev/ttyACM0', baudRate: 115200 })
.pipe(new MavLinkPacketSplitter())
.pipe(new MavLinkPacketParser())
.pipe(mavdbg())
.resume()
That's the first approach into making working with MavLink approachable. It's really a disaster if you don't know what the packets flying around mean.
I think that in the future this package will grow substantially, so stay tuned!
Happy coding!
FAQs
MavLink debugger services
We found that node-mavlink-debugger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.