From 28243316862f3827d6f173e35edbaf5ed7cee739 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sun, 5 Jul 2020 22:09:43 -0700 Subject: [PATCH] minor doc fixes --- mesh.proto | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mesh.proto b/mesh.proto index 39f77bb..b636d1a 100644 --- a/mesh.proto +++ b/mesh.proto @@ -63,13 +63,16 @@ Nanopb binaries available here: https://jpa.kapsi.fi/nanopb/download/ use nanopb // a gps position message Position { - /** The new preferred location encoding, divide by 10e-7 to get degrees in + /** The new preferred location encoding, divide by 1e-7 to get degrees in * floating point */ sint32 latitude_i = 7; sint32 longitude_i = 8; + /** In meters above MSL */ int32 altitude = 3; - int32 battery_level = 4; // 1-100 (0 means not provided) + + /** 1-100 (0 means not provided) */ + int32 battery_level = 4; /// This is usually not sent over the mesh (to save space), but it is sent /// from the phone so that the local device can set its RTC If it is sent over