kopia lustrzana https://github.com/bristol-seds/pico-tracker
[bugfix] lat, lon and altitude should all be signed values!
rodzic
f01361ff37
commit
1f812b5a00
|
@ -38,9 +38,9 @@ typedef struct tracker_datapoint {
|
||||||
struct tracker_time time;
|
struct tracker_time time;
|
||||||
|
|
||||||
/* Position */
|
/* Position */
|
||||||
uint32_t latitude; /* 100 nanodeg */
|
int32_t latitude; /* 100 nanodeg */
|
||||||
uint32_t longitude; /* 100 nanodeg */
|
int32_t longitude; /* 100 nanodeg */
|
||||||
uint32_t altitude; /* mm */
|
int32_t altitude; /* mm */
|
||||||
uint8_t satillite_count; /* */
|
uint8_t satillite_count; /* */
|
||||||
|
|
||||||
/* Sensors */
|
/* Sensors */
|
||||||
|
|
Ładowanie…
Reference in New Issue