Skip to content

Commit

Permalink
Merge pull request mavlink#4 from hamishwillee/restructure_for_multil…
Browse files Browse the repository at this point in the history
…ingual_support

Restructure for multilingual support
  • Loading branch information
hamishwillee authored May 2, 2017
2 parents 8dd5495 + 4fc6979 commit a4da6be
Show file tree
Hide file tree
Showing 15 changed files with 32 additions and 15 deletions.
4 changes: 4 additions & 0 deletions LANGS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* [English](en/)
<!-- * [Chinese (中文)](zh/) -->
<!-- * [Español](es/) -->

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Because MAVLink doesn't require any additional framing it is very well suited fo
MAVLink was first released early 2009 by Lorenz Meier and has now a [significant number of contributors](https://github.com/mavlink/mavlink/graphs/contributors).

The content of this book is CC-BY 4.0 licensed.

11 changes: 0 additions & 11 deletions SUMMARY.md

This file was deleted.

9 changes: 5 additions & 4 deletions book.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"page-toc-button",
"mermaid",
"-mermaid-2",
"toolbar@git+https://github.com/hamishwillee/gitbook-plugin-toolbar.git"
"toolbar@git+https://github.com/hamishwillee/gitbook-plugin-toolbar.git",
"language-picker"
],
"pluginsConfig": {
"theme-api": {
Expand Down Expand Up @@ -46,19 +47,19 @@
"label": "Bug tracker",
"icon": "fa fa-bug",
"position" : "left",
"url": "https://github.com/mavlink/devguide/issues/new?title=Doc+Bug:+{{title}}&body=DESCRIBE+PROBLEM+WITH+DOCS+HERE%0A%0ABug+Page:+[{{title}}]({{url}})"
"url": "https://github.com/mavlink/mavlink-devguide/issues/new?title=Doc+Bug:+{{title}}&body=DESCRIBE+PROBLEM+WITH+DOCS+HERE%0A%0ABug+Page:+[{{title}}]({{url}})"

},
{
"label": "GitHub",
"icon": "fa fa-github",
"url": "https://github.com/mavlink/devguide"
"url": "https://github.com/mavlink/mavlink-devguide"
},
{
"label": "Edit page on github",
"icon": "fa fa-pencil-square-o",
"position" : "left",
"url": "https://github.com/mavlink/devguide/edit/master/{{filepath_lang}}"
"url": "https://github.com/mavlink/mavlink-devguide/edit/master/{{filepath_lang}}"
}
]
}
Expand Down
11 changes: 11 additions & 0 deletions en/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# MAVLink Developer Guide

MAVLink is a very lightweight, header-only message marshalling library for micro air vehicles / drones.

MAVLink follows a modern hybrid publish-subscribe and point-to-point design pattern: Data streams are sent / published as **topics** while configuration sub-protocols such as the [mission protocol](/mission-protocol.md) or [parameter protocol](/parameter-protocol.md) are point-to-point with retransmission.

Because MAVLink doesn't require any additional framing it is very well suited for applications with very limited communication bandwidth. It's reference implementation in C/C++ is highly optimized for resource-constrained systems with limited RAM and flash memory. It is field-proven and deployed in many products where it serves as interoperability interface between components of different manufacturers.

MAVLink was first released early 2009 by Lorenz Meier and has now a [significant number of contributors](https://github.com/mavlink/mavlink/graphs/contributors).

The content of this book is CC-BY 4.0 licensed.
11 changes: 11 additions & 0 deletions en/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Summary

* [Introduction](README.md)
* [Protocol Overview](protocol.md)
* [Serialization](serialization.md)
* [Routing](routing.md)
* [General Telemetry](general_telemetry.md)
* [Mission Protocol](mission_protocol.md)
* [Parameter Protocol](parameter_protocol.md)
* [Camera Protocol](camera_protocol.md)
* [Gimbal Protocol](gimbal_protocol.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a4da6be

Please sign in to comment.