mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 12:55:19 +03:00
commit
f095d648f5
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue