- 27 Dec, 2013 1 commit
-
-
Lorenz Meier authored
Unit test changes
-
- 26 Dec, 2013 4 commits
-
-
Don Gagne authored
-
Don Gagne authored
I have UI based unit tests coming, so getting ready for that
-
Don Gagne authored
-
Don Gagne authored
- debug builds always compile unit tests in - seperate qgcunittest.pro is no longer needed - found out the hard way that you can’t use debug or release as a scope. You need to use the CONFIG(debug,debug|relase) macro (in this example to test fro debug). Reason is that debug and release show up multiple times in CONFIG, last debug wins. This is what the CONFIG macro does. Without it, it’s luck as to what you get. I found OSX was getting debug, Linux was getting a debug build, build into release directories. QT_DEBUG set randomly. Lot’s of problems.
-
- 25 Dec, 2013 4 commits
-
-
Lorenz Meier authored
Add data rate calculations for all LinkInterface-derived classes
-
Lorenz Meier authored
add eclipse settings folder to gitignore file
-
Lorenz Meier authored
Fix broken Windows build
-
Don Gagne authored
- NAN not available in windows headers, use cross platform friendly version - VS compiler does not allow initializing non-integral types in header files - ActiveQt libs are already installed by Win Qt4.8.5, no need to build. Plus this part of the makefile just loops without nmake.exe installed which is not part of a standard windows box
-
- 24 Dec, 2013 5 commits
-
-
Thomas Gubler authored
-
Bryant Mairs authored
Converted LinkInterface from a pure-virtual interface into an abstract base class. This centralized the data rate calculation code for all subclasses. Also added the necessary code to provide upstream/downstream data rate calculations for all LinkInterface-derived classes.
-
Bryant Mairs authored
-
Lorenz Meier authored
Remove hardwired inclusion of OSG
-
Don Gagne authored
The remainder of .pro and .pri files have conditional inclusion of OpenSceneGraph bases on availability. Removed this line which always includes it and overrides the conditional include which is already in other parts of the make files.
-
- 23 Dec, 2013 3 commits
-
-
Lorenz Meier authored
Add display of the upstream data rate to the Debug Console
-
Bryant Mairs authored
-
Bryant Mairs authored
-
- 22 Dec, 2013 5 commits
-
-
Bryant Mairs authored
-
Bryant Mairs authored
Renamed getNominalDataRate to getConnectionSpeed. Also added upstream/downstream data rate functions to all Link classes.
-
Bryant Mairs authored
-
Bryant Mairs authored
Simplify calculations by assuming we only care about rates in kB/s.
-
Bryant Mairs authored
-
- 19 Dec, 2013 5 commits
-
-
Lorenz Meier authored
Altitude and speed rewrite
-
Anton Babushkin authored
-
Lorenz Meier authored
Removed LinkInterface methods which were never being called. Updated var...
-
Lorenz Meier authored
Unit Tests would not compile, once they compiled, they didn't work correctly, once working correctly they found a couple bugs
-
Lorenz Meier authored
Expose SYSTEM_TIME message to QGC
-
- 17 Dec, 2013 2 commits
-
-
-
Bryant authored
-
- 12 Dec, 2013 8 commits
-
-
Don Gagne authored
-
Don Gagne authored
-
Don Gagne authored
Use TARGET instead of hardcoded qgroundcontrol.app name. This allows this file to build unit test app as well as qgroundcontrol app.
-
Don Gagne authored
-
Don Gagne authored
-
-
Lorenz Meier authored
Linux APM Toolbar broken, Windows build broken
-
Don Gagne authored
While testing the previous commit on Windows I found that I could not compile windows due to include of atlbase.h. This file is no longer available in SDKs. It is only available in for money versions of VIsual Studio. Luckily this include was not needed. So I just removed it and Windows now builds again with just VS Express. Tested all changes on OSX, Linux and Windows (including speech on windows, which still works).
-
- 11 Dec, 2013 1 commit
-
-
Anton Babushkin authored
Altitude splitted to altitudeAMSL and altitudeRelative, speed splitted to airSpeed and groundSpeed. PrimaryFlightDisplay uses airSpeed for FW and groundSpeed for MC.
-
- 10 Dec, 2013 2 commits
-
-
Don Gagne authored
Linux build was broken due to the fact that it wasn’t copying qml files. With each build flavor having it’s own seperate copy code it was easy for these to get out of sync. Centralized the copy list so that it remains in sync across flavors.
-
Lorenz Meier authored
change type of port from uint16_t to quint16
-