1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

COLIBRI_RACE: BST GPS fix (#8555)

COLIBRI_RACE: BST GPS fix
This commit is contained in:
Michael Keller 2019-07-14 02:05:18 +12:00 committed by GitHub
commit f095d648f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -786,8 +786,8 @@ static void bstMasterWrite16(uint16_t data)
#ifdef USE_GPS
static void bstMasterWrite32(uint32_t data)
{
bstMasterWrite16((uint8_t)(data >> 16));
bstMasterWrite16((uint8_t)(data >> 0));
bstMasterWrite16((uint16_t)(data >> 16));
bstMasterWrite16((uint16_t)(data >> 0));
}
static int32_t lat = 0;