Commit 87564886 authored by Ilya Kitaev's avatar Ilya Kitaev Committed by Andreas Bircher

Fixed syntax error

Conflicts:
	libs/mavlink/include/mavlink/v1.0
	mavlink_generator
	src/GPS/Drivers
parent 79c101fb
......@@ -84,7 +84,7 @@ public class QGCActivity extends QtActivity implements TextToSpeech.OnInitListen
@Override
public void onNewData(final byte[] dataA, int userDataA)
{
Log.d(TAG, "UsbIoManager.Listener.onNewData: read " + dataA.length + " bytes);
Log.d(TAG, "UsbIoManager.Listener.onNewData: read " + dataA.length + " bytes");
nativeDeviceNewData(userDataA, dataA);
}
};
......@@ -494,7 +494,7 @@ public class QGCActivity extends QtActivity implements TextToSpeech.OnInitListen
try
{
Log.d(TAG, "write: about to write " + sourceA.length + " bytes);
Log.d(TAG, "write: about to write " + sourceA.length + " bytes");
int bytesWritten = driverL.write(sourceA, timeoutMSecA);
Log.d(TAG, "write: successfully written " + bytesWritten + " bytes");
return bytesWritten;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment