X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=src%2Fao_gps.c;h=78957cb386dc6aeff05f2f19af1971128ff1a0d1;hp=32a44fb1b24ca8f52c56e132b403633ec5fb3923;hb=ab40d224b39ba6d29c4056e2d2c365e1eb3d3793;hpb=d6749bf24792bb41ca700cf4b8e5e1ac1a63cbf0 diff --git a/src/ao_gps.c b/src/ao_gps.c index 32a44fb1..78957cb3 100644 --- a/src/ao_gps.c +++ b/src/ao_gps.c @@ -289,9 +289,9 @@ ao_gps(void) __reentrant } for (;;) { /* Locate the begining of the next record */ - while (ao_sirf_byte() != 0xa0) + while (ao_sirf_byte() != (uint8_t) 0xa0) ; - if (ao_sirf_byte() != 0xa2) + if (ao_sirf_byte() != (uint8_t) 0xa2) continue; /* Length */ @@ -321,9 +321,9 @@ ao_gps(void) __reentrant cksum |= ao_sirf_byte(); if (ao_sirf_cksum != cksum) continue; - if (ao_sirf_byte() != 0xb0) + if (ao_sirf_byte() != (uint8_t) 0xb0) continue; - if (ao_sirf_byte() != 0xb3) + if (ao_sirf_byte() != (uint8_t) 0xb3) continue; switch (i) {