mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 04:45:24 +03:00
Cleanup various compiler warnings that were appearing since the
additional compiler flags were added.
This commit is contained in:
parent
2d6a61c8c7
commit
9a9ff9b1ad
25 changed files with 102 additions and 37 deletions
|
@ -31,6 +31,8 @@
|
|||
#include "drivers/accgyro.h"
|
||||
#include "drivers/serial.h"
|
||||
#include "drivers/bus_i2c.h"
|
||||
#include "drivers/gpio.h"
|
||||
#include "drivers/timer.h"
|
||||
#include "drivers/pwm_rx.h"
|
||||
|
||||
#include "flight/flight.h"
|
||||
|
@ -911,7 +913,7 @@ static const uint8_t mspTelemetryCommandSequence[] = {
|
|||
|
||||
void sendMspTelemetry(void)
|
||||
{
|
||||
static int sequenceIndex = 0;
|
||||
static uint32_t sequenceIndex = 0;
|
||||
|
||||
cmdMSP = mspTelemetryCommandSequence[sequenceIndex];
|
||||
evaluateCommand();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue