- 03 May, 2019 1 commit
-
-
Don Gagne authored
Allow time adjust while playing
-
- 03 May, 2018 1 commit
-
-
DonLakeFlyer authored
-
- 02 May, 2018 1 commit
-
-
Patrick José Pereira authored
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
-
- 17 May, 2017 1 commit
-
-
DonLakeFlyer authored
-
- 09 May, 2017 1 commit
-
-
Don Gagne authored
-
- 26 Mar, 2017 1 commit
-
-
DonLakeFlyer authored
-
- 14 Mar, 2017 1 commit
-
-
DonLakeFlyer authored
-
- 26 Dec, 2016 1 commit
-
-
Don Gagne authored
Prevent shutdown ordering crashes
-
- 27 Nov, 2016 1 commit
-
-
Gus Grubba authored
-
- 01 Jul, 2016 1 commit
-
-
Don Gagne authored
Too buggy to leave it in for 3.0 release
-
- 04 Feb, 2016 1 commit
-
-
dogmaphobic authored
-
- 20 Jan, 2016 1 commit
-
-
Don Gagne authored
- Also fix vehicle selector dropdown in toolbar
-
- 25 Dec, 2015 1 commit
-
-
Don Gagne authored
-
- 24 Dec, 2015 1 commit
-
-
Don Gagne authored
-
- 23 Nov, 2015 1 commit
-
-
Don Gagne authored
- Pervasive change to automatically connect to known board types - Lots of additional changes along with this: - More exposure of objects/properties to Qml - Much restructuring in LinkManager and LinkManager clients
-
- 19 Nov, 2015 1 commit
-
-
Don Gagne authored
- Pervasive change to automatically connect to known board types - Lots of additional changes along with this: - More exposure of objects/properties to Qml - Much restructuring in LinkManager and LinkManager clients
-
- 18 Nov, 2015 1 commit
-
-
Don Gagne authored
- Pervasive change to automatically connect to known board types - Lots of additional changes along with this: - More exposure of objects/properties to Qml - Much restructuring in LinkManager and LinkManager clients
-
- 30 Oct, 2015 1 commit
-
-
Don Gagne authored
Instead us a Toolbox concept which hangs off of QGCApplication
-
- 26 Jul, 2015 1 commit
-
-
Don Gagne authored
-
- 25 Jul, 2015 1 commit
-
-
Don Gagne authored
-
- 31 May, 2015 1 commit
-
-
dogmaphobic authored
-
- 29 Apr, 2015 1 commit
-
-
Don Gagne authored
-
- 02 Apr, 2015 1 commit
-
-
Don Gagne authored
- All resources are either under src or under resources dirs - Removed files top level directory - Move flightgear files to top level dir
-
- 28 Mar, 2015 1 commit
-
-
Don Gagne authored
Link ids were being used interchangeably with the mavlink channel for the link. Link ids handed out as a numerically increasing integer. Once the counter went past MAVLINK_COMM_NUM_BUFFERS all hell would break loose and cause memory corruption.
-
- 22 Mar, 2015 1 commit
-
-
Don Gagne authored
Also many LinkManager API changes to further isolate all link management inside LinkManager.
-
- 04 Feb, 2015 1 commit
-
-
dogmaphobic authored
-
- 03 Feb, 2015 1 commit
-
-
dogmaphobic authored
-
- 26 Dec, 2014 1 commit
-
-
Don Gagne authored
Moving methods from MainWindow to QGCApplication so that more things can run without a window. Helpful for testing.
-
- 12 Dec, 2014 1 commit
-
-
Don Gagne authored
Plus a large number of other changes to allow for orderly shutdown of objects without crashes or asserts. This is need for unit tests to create/delete global state around every test.
-
- 27 Nov, 2014 2 commits
- 25 Nov, 2014 2 commits
- 24 Nov, 2014 2 commits
-
-
Don Gagne authored
Using QFileDialog directly on OS X can hang intermittently due to Qt bug.
-
Don Gagne authored
- Logging now always on to temp file - User prompted to save temp file after disconnect - Orphaned temp logs checked for on boot - Logs saved to new save file location - Log file starts/stops with first and last connnection
-
- 27 Jun, 2014 1 commit
-
-
Bryant Mairs authored
-
- 10 Jun, 2014 1 commit
-
-
Bryant Mairs authored
In the logplayer, the data stream is read ahead for messages, which is used to determine the size of the output bytearrays. Previously, this wasn't done correctly resulting in non-ideal behavior. Now, the next message is scanned properly, so the only bytearrays that are emitted from QGCMAVLinkLogPlayer are MAVLink messages in their entirety. This also has the benefit of skipping invalid/corrupted messages in the log that's being played back.
-
- 25 May, 2014 1 commit
-
-
Don Gagne authored
-
- 06 May, 2014 1 commit
-
-
Bryant Mairs authored
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.
-
- 31 May, 2013 1 commit
-
-
Bryant authored
-