Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Mavlink Router
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uav-hds
intel-aero
Mavlink Router
Commits
18891603
Commit
18891603
authored
4 years ago
by
Lucas De Marchi
Browse files
Options
Downloads
Patches
Plain Diff
mavlink-router 2
Signed-off-by:
Lucas De Marchi
<
lucas.de.marchi@gmail.com
>
parent
d47e9c74
No related branches found
Branches containing commit
Tags
v2
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+31
-0
31 additions, 0 deletions
NEWS
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
with
32 additions
and
1 deletion
NEWS
+
31
−
0
View file @
18891603
mavlink-router 2
================
- Misc bug fixes on handling error handling paths and general cleanups
- Log file is now changed to read-only when we are not saving flight stack
log anymore
- New "LogMode" configuration to allow logging only when armed
- MavlinkDialect now defaults to "auto": we set it based on the flight stack:
either ArduPilot or PX4
- Fix logging from vehicles with systemd ID not equal 1. We will now get the
system ID from the first message heartbeat received with MAV_COMP_ID_AUTOPILOT1
component ID
- Gracefully handle restarts, to reuse the same IP/port.
- Gracefully handle errors when the UART device disappears (e.g. when disconnecting
a USB-serial dongle)
- Make mavlink-router compatible with musl libc
- Tweak USB-serial configuration to ask Linux to reduce the latency
- Add "Filter" configuration to endpoints: this allows endpoints to declare interest
in only a subset of messages by specifying the message IDs. This allows reducing the
the link traffic and thus mixing for e.g. low bandwidth links in a high bandwith
network
- We now plunge a background sync() call every 1 second when logging to avoid losing
log data - default OS configuration in Linux is 30 seconds.
- Always check CRC of the messages arriving independently of the link (UDP vs UART).
Previously we would skip checking on UDP because the network layer guarantees we
aren't receiving garbage and it's expected to have 1 message per packet. However
we don't enforce the 1 message per packet and the source of the message
could be unintentionally sending garbage when, for example it relays
messages from other lossy links.
- New MinFreeSpace and MaxLogFiles configuration to control logging maximum size
and rotation
mavlink-router 1
================
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
18891603
AC_PREREQ(2.64)
AC_INIT([mavlink-router],
[
1
],
[
2
],
[],
[mavlink-router],
[https://github.com/01org/mavlink-router])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment