Skip to content

Commit

Permalink
update various READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
stronnag committed Mar 27, 2022
1 parent 2b0834d commit 30bd5f4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ mwp should build and running on any platform that supports (recent versions of)
* libgdl;
* POSIX API

mwptools is tested on x86_64, ia32, Arm32 and aarch64 devices (Linux / FreeBSD).
mwptools is tested on x86_64, ia32, and aarch64 architectures (Linux / FreeBSD).

* There is a "Release" debian package (x86_64, Debian, Ubuntu etc).
* Simple, ["one stop shop" build and install script](https://github.com/stronnag/mwptools/wiki/Building-with-meson-and-ninja/)
Expand Down Expand Up @@ -93,7 +93,7 @@ For OS not supported by mwp (e.g. MacOS, IOS, Andriod), see also [impload](https

* [Installation Guide (wiki)](https://github.com/stronnag/mwptools/wiki/Building-with-meson-and-ninja/).

Support questions are best asked in the [RC Groups board](https://www.rcgroups.com/forums/showthread.php?2633708-mwp), the inav discord (off-topic) or telegram channels or Github discussions / issues.
Support questions are best asked in the [RC Groups board](https://www.rcgroups.com/forums/showthread.php?2633708-mwp), the inav Discord (off-topic) or Telegram channels or Github discussions / issues.

### Changelog / Announcements

Expand Down Expand Up @@ -126,7 +126,7 @@ In addition to [mwp](https://github.com/stronnag/mwptools), the following inav m

* [Inav Configurator (for inav 2.x)](https://github.com/iNavFlight/inav-configurator/tree/2.6.1), limited planning support
* [Inav Configurator (for current inav)]( https://github.com/iNavFlight/inav-configurator), supports all current WP types. [Preview builds](http://seyrsnys.myzen.co.uk/inav-configurator-next/), may be augmented with [impload](https://github.com/stronnag/impload/) to upload missions to 2.x firmware.
* [Drone Helper](https://www.microsoft.com/en-us/p/drone-helper/9ncs8zwxn58x?activetab=pivot:overviewtab) (Windows 10)
* [Drone Helper](https://www.microsoft.com/en-us/p/drone-helper/9ncs8zwxn58x?activetab=pivot:overviewtab) (Windows 10+)
* [Ezgui](https://play.google.com/store/apps/details?id=com.ezio.multiwii&hl=en_GB), [MissionPlanner for Inav](https://play.google.com/store/apps/details?id=com.eziosoft.ezgui.inav&hl=en) (Android) Unsupported, obsolete. May not work with either contemporary Android or inav firmware.
* [Mobile Flight](https://github.com/flyinghead/mobile-flight) (IOS) Unsupported, obsolete. May not work with either contemporary IOS or inav firmware.
* [Apmplanner2](https://ardupilot.org/planner2/) with [impload](https://github.com/stronnag/impload/). Ardupilot planner, missions can be uploaded to inav using [impload](https://github.com/stronnag/impload/).
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('mwptools', 'c', 'vala', version : '5.080.712')
project('mwptools', 'c', 'vala', version : '5.086.586')

meson.add_install_script('meson/post_install.sh')
conf_data = configuration_data()
Expand Down
2 changes: 1 addition & 1 deletion src/samples/caltool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

`caltool` is a simple tool to for inav 6 point ACC calibration and mag calibraton
`caltool` is a simple tool to for inav 6 point ACC calibration and mag calibration

## Features

Expand Down
2 changes: 2 additions & 0 deletions src/samples/mpm-telemetry/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Some test programs and data for MPM (Multi-Protocol-Module) telemetry.

* mpm-test.vala : Extant MPM telemetry (no header or MPM header with signature [see Issue 1104](https://github.com/EdgeTX/edgetx/issues/1104#issuecomment-974725129)

Note that EdgeTX 2.7 will provide the MPM signature bytes ('M', 'P'), making auto detection easy.
9 changes: 7 additions & 2 deletions src/samples/s2n/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
EXES = ser2udp
EXE = ser2udp
prefix ?= /usr/local

all: $(EXES)
all: $(EXE)

ser2udp: ser2udp.go get_interface_other.go go.sum
go build -ldflags "-w -s" -o $@
Expand All @@ -21,3 +22,7 @@ go.sum: go.mod

clean:
rm -f ser2udp ser2udp.exe ser2udp.linux ser2udp.freebsd

install: $(EXE)
-install -d $(prefix)/bin
-install -s $(EXE) $(prefix)/bin/

0 comments on commit 30bd5f4

Please sign in to comment.