Fix cppcheck error, uninitialized var.

This commit is contained in:
Anders Hoglund 2017-01-16 16:52:39 +01:00
parent b60bc0a2e1
commit 69e898a5f2
1 changed files with 1 additions and 1 deletions

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;
}