1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 07:15:18 +03:00

Fix cppcheck error, uninitialized var.

This commit is contained in:
Anders Hoglund 2017-01-16 16:52:39 +01:00
parent b60bc0a2e1
commit 69e898a5f2

View file

@ -186,7 +186,7 @@ bool escSensorInit(void)
// Initialize serial port
escSensorPort = openSerialPort(portConfig->identifier, FUNCTION_ESC_SENSOR, escSensorDataReceive, ESC_SENSOR_BAUDRATE, MODE_RX, options);
for (int i; i < MAX_SUPPORTED_MOTORS; i = i + 1) {
for (int i = 0; i < MAX_SUPPORTED_MOTORS; i = i + 1) {
escSensorData[i].dataAge = ESC_DATA_INVALID;
}