Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
5b22bf87
Commit
5b22bf87
authored
Jul 06, 2020
by
Don Gagne
Browse files
Fix crash
parent
f0568496
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/VehicleSetup/Bootloader.cc
View file @
5b22bf87
...
...
@@ -51,33 +51,27 @@ bool Bootloader::_write(QSerialPort* port, const uint8_t byte)
return
_write
(
port
,
buf
,
1
);
}
bool
Bootloader
::
_read
(
QSerialPort
*
port
,
uint8_t
*
data
,
qint64
maxSize
,
int
readTimeout
)
bool
Bootloader
::
_read
(
QSerialPort
*
port
,
uint8_t
*
data
,
qint64
cBytesExpected
,
int
readTimeout
)
{
qint64
bytesAlreadyRead
=
0
;
while
(
bytesAlreadyRead
<
maxSize
)
{
QElapsedTimer
timeout
;
timeout
.
start
();
while
(
port
->
bytesAvailable
()
<
1
)
{
if
(
timeout
.
elapsed
()
>
readTimeout
)
{
_errorString
=
tr
(
"Timeout waiting for bytes to be available"
);
return
false
;
}
port
->
waitForReadyRead
(
100
);
}
qint64
bytesRead
;
bytesRead
=
port
->
read
((
char
*
)
&
data
[
bytesAlreadyRead
],
maxSize
);
if
(
bytesRead
==
-
1
)
{
_errorString
=
tr
(
"Read failed: error: %1"
).
arg
(
port
->
errorString
());
QElapsedTimer
timeout
;
timeout
.
start
();
while
(
port
->
bytesAvailable
()
<
cBytesExpected
)
{
if
(
timeout
.
elapsed
()
>
readTimeout
)
{
_errorString
=
tr
(
"Timeout waiting for bytes to be available"
);
return
false
;
}
else
{
Q_ASSERT
(
bytesRead
!=
0
);
bytesAlreadyRead
+=
bytesRead
;
}
port
->
waitForReadyRead
(
100
);
}
qint64
bytesRead
;
bytesRead
=
port
->
read
((
char
*
)
data
,
cBytesExpected
);
if
(
bytesRead
!=
cBytesExpected
)
{
_errorString
=
tr
(
"Read failed: error: %1"
).
arg
(
port
->
errorString
());
return
false
;
}
return
true
;
}
...
...
src/VehicleSetup/Bootloader.h
View file @
5b22bf87
...
...
@@ -96,7 +96,7 @@ private:
bool
_write
(
QSerialPort
*
port
,
const
uint8_t
*
data
,
qint64
maxSize
);
bool
_write
(
QSerialPort
*
port
,
const
uint8_t
byte
);
bool
_read
(
QSerialPort
*
port
,
uint8_t
*
data
,
qint64
maxSize
,
int
readTimeout
=
_readTimout
);
bool
_read
(
QSerialPort
*
port
,
uint8_t
*
data
,
qint64
cBytesExpected
,
int
readTimeout
=
_readTimout
);
bool
_sendCommand
(
QSerialPort
*
port
,
uint8_t
cmd
,
int
responseTimeout
=
_responseTimeout
);
bool
_getCommandResponse
(
QSerialPort
*
port
,
const
int
responseTimeout
=
_responseTimeout
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment