mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
Merge pull request #11887 from KarateBrot/styledef
Remove old style definitions
This commit is contained in:
commit
7e441b5f4f
57 changed files with 119 additions and 117 deletions
|
@ -298,7 +298,7 @@ static void shiftPacketLog(void)
|
|||
}
|
||||
}
|
||||
|
||||
static bool isConfiguratorConnected()
|
||||
static bool isConfiguratorConnected(void)
|
||||
{
|
||||
return (getArmingDisableFlags() & ARMING_DISABLED_MSP);
|
||||
}
|
||||
|
@ -531,7 +531,7 @@ static void ubloxSetNavRate(uint16_t measRate, uint16_t navRate, uint16_t timeRe
|
|||
ubloxSendConfigMessage(&tx_buffer, MSG_CFG_RATE, sizeof(ubx_cfg_rate));
|
||||
}
|
||||
|
||||
static void ubloxSetSbas()
|
||||
static void ubloxSetSbas(void)
|
||||
{
|
||||
ubx_message tx_buffer;
|
||||
|
||||
|
@ -940,7 +940,7 @@ bool gpsNewFrame(uint8_t c)
|
|||
}
|
||||
|
||||
// Check for healthy communications
|
||||
bool gpsIsHealthy()
|
||||
bool gpsIsHealthy(void)
|
||||
{
|
||||
return (gpsData.state == GPS_STATE_RECEIVING_DATA);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue