Merge pull request #449 from meshtastic/altitude

Convert alt to int32
This commit is contained in:
Ben Meadors 2024-02-22 07:14:59 -06:00 committed by GitHub
commit b88889941c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -237,7 +237,7 @@ message PLI {
/*
* Altitude (ATAK prefers HAE)
*/
uint32 altitude = 3;
int32 altitude = 3;
/*
* Speed
@ -248,4 +248,4 @@ message PLI {
* Course in degrees
*/
uint32 course = 5;
}
}