Fix cppcheck error, uninitialized var.
This commit is contained in:
parent
b60bc0a2e1
commit
69e898a5f2
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue