Lorenz Meier
2792adc5ee
hide the differential pressure sensor if we are a rotary wing
11 years ago
Lorenz Meier
c1b6e6b445
Reorder the vehicle config so it makes more sense for users
11 years ago
Lorenz Meier
5203eac97a
Make map less chatty and have it stop flickering the screen
11 years ago
Lorenz Meier
d7aa40c7b2
Merge branch 'master' into thread_test
11 years ago
Lorenz Meier
9f0f311a12
Updated qupgrade
11 years ago
Lorenz Meier
667270b508
Updated qupgrade version
11 years ago
Lorenz Meier
42913f6108
Updated QUpgrade submodule
11 years ago
Lorenz Meier
5b3e8eb2a0
More cleanup on threading
11 years ago
Thomas Gubler
b15acd6e91
change main window shortcuts to more intuitive values
11 years ago
Lorenz Meier
eaf61cb187
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
e1267cf442
Merge pull request #655 from mavlink/rc_cal_cleanup
...
RC switches names fixed in RC calibration
11 years ago
Anton Babushkin
06b8ce6da6
PX4 modes names updated
11 years ago
Lorenz Meier
186d9c7d4f
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Anton Babushkin
b23f464f3e
Merge branch 'master' into rc_cal_cleanup
11 years ago
Lorenz Meier
8371276cfd
Revert "fix value reading, only real32 was correct."
...
This reverts commit ec799d44bd
.
11 years ago
Lorenz Meier
f468db1abd
Revert "change to qt type"
...
This reverts commit b34dd86e92
.
11 years ago
Lorenz Meier
594429ee81
Revert "remove duplicate code "
...
This reverts commit 80f4f133a0
.
11 years ago
Lorenz Meier
e6824e207b
Merge branch 'thread_test' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
55b291418a
Merge pull request #654 from treymarc/time_displayHours
...
correction : display duration in hours,minutes,sec
11 years ago
Lorenz Meier
cb1e2d8c31
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
f5ef31dfd2
Added QU4D line
11 years ago
Don Gagne
33983aa71b
Merge pull request #656 from DonLakeFlyer/UASUnitTest
...
Fix UAS unit test for range and voltage change
11 years ago
Don Gagne
fc369c16e6
Fix UAS unit test for range and voltage change
11 years ago
Anton Babushkin
b114e1bd78
RC switches names fixed in RC calibration
11 years ago
treymarc
971cf48731
comment out dubious lpf
11 years ago
Lorenz Meier
5a855df38b
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
8f6e8117a1
Fixed switch mapping / names
11 years ago
treymarc
7d0489da53
correction : display duration in hours,minutes,sec
11 years ago
Bryant Mairs
5c62a683ed
Refactored mission manager code for handling MAVLink messages.
...
Also added translation calls for some UI messages.
11 years ago
Bryant Mairs
84c82d976b
Refactored the mission message exclusion logic.
...
The existing logic for filtering out MISSION* messages that don't apply to this instance of QGC wasn't clear and exactly correct. This refactoring reorganizes the code to be more clear and makes it explicit when the messages should be ignored by this instance of QGC.
Additionally a few more status messages are translated to be helpful to our non-English speaking devs/users.
11 years ago
Lorenz Meier
9e76f9bba9
Fix comment about heartbeat interval timeout
11 years ago
Lorenz Meier
78c0435796
Waypoint list: Guard against accesses while list is not yet populated
11 years ago
Lorenz Meier
2b70dd394d
Fix the received mode flag
11 years ago
Lorenz Meier
a9185986ab
Add MAVLink message container to valid meta types for cross-thread buffering
11 years ago
Lorenz Meier
15812f3a3f
Move UAS objects to their own worker threads
11 years ago
Lorenz Meier
65dcf96e29
Use higher rate for the serial link now that its living in its own thread
11 years ago
Lorenz Meier
1c80824e07
Fix sim update last measurement
11 years ago
Lorenz Meier
d7dbdf08b6
Move MAVLink decoder in its own low priority thread
11 years ago
Lorenz Meier
5e06a09ce0
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
c4848a1df9
Merge pull request #640 from WillRam/master
...
google maps changed to https and use system proxy
11 years ago
WillRam
f576d9e0c8
whitespace
11 years ago
Lorenz Meier
688fda8df7
Merge branch 'master' into thread_test
11 years ago
Lorenz Meier
559931f3f9
Guard against system with waypoints already loaded
11 years ago
Lorenz Meier
6e9ac2fc72
Merge branch 'master' into thread_test
11 years ago
Lorenz Meier
99d187a41d
XPlane sim link: Fix ground truth reporting
11 years ago
Lorenz Meier
6d72324ab0
Add new message to ignore list
11 years ago
Lorenz Meier
61f64e1c2e
Merge branch 'master' of github.com:mavlink/qgroundcontrol into thread_test
11 years ago
Lorenz Meier
72dd2b00df
Merge pull request #638 from Susurrus/logging_compress
...
QGC data logging now records small MAVLink messages.
11 years ago
Lorenz Meier
f27f6c7f4f
Merge pull request #637 from Susurrus/message_view
...
Google earth: Corrected #ifdef for Google Earth-specific code.
11 years ago
Bryant Mairs
321f21f220
QGC data logging now records small MAVLink messages.
...
Previously MAVLink data streams recorded by QGC would use a fixed block size of the maximum MAVLink message length and fill in only the bytes written by the message. This wasted space, make manual parsing difficult, and broke compatibility with scripts provided in the MAVLink project (issue #174 ).
This patch alters logging to output only a packed data stream (64-bit big endian unix timestamp in microseconds since epoch + MAVLink message) instead of the unpacked data stream previously output. Additionally the previous logging code used the system endianness for packing in the timestamp, this has now been switched to always be big endian regardless of platform. All the documentation specifies big endian, so the code now follows the docs here.
Additionally data playback has been modified to playback both the new packed data streams as well as the old data streams, even those with improper endianness for their timestamps.
Finally, a variety of bugs have been fixed, along with some additional features and user experience changes, hopefully for the better. All existing functionality has been preserved as well.
11 years ago