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
1 changed files with 2 additions and 2 deletions

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;