DonLakeFlyer
59eba1b132
Fix double send of MAV_CMD_PREFLIGHT_CALIBRATION
4 years ago
DonLakeFlyer
84dd94b5a3
Fix crash on descent rate calc
4 years ago
PX4BuildBot
f7206a22e8
Update PX4 Firmware metadata Mon Feb 22 16:08:38 UTC 2021
4 years ago
PX4BuildBot
68743970bf
Update PX4 Firmware metadata Mon Feb 22 08:10:35 UTC 2021
4 years ago
david sastre
4b88a13670
TelemetryValuesBar: change panel from transparent to opaque
4 years ago
DonLakeFlyer
8cc9037088
Change Tool Drawer to Dialog
4 years ago
Patrick José Pereira
6bdb7c6bf5
MissiongManager: ComplexMissionItem: Save preset as CborValue variant
...
Fix #9423
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
4 years ago
david sastre
2a1de00211
Vehicle: don't update _coordinate from GPS2
4 years ago
Don Gagne
73cb69ebb6
Revert "TelemetryValuesBar: custom transparency by settings"
...
This reverts commit 671943640d
.
4 years ago
AndKe
45d35b02fc
Video: added preset for Yuneec Mantis G
4 years ago
Willian Galvani
6f8311b89f
Vehicle: hide 'No GPS Lock' message if GPS is not present
4 years ago
Beat Küng
437f1f72ae
fix joystick: avoid accessing invalid pointer after vehicle is destroyed
...
Joystick::_activeVehicle was still pointing to a vehicle after it got
destroyed (e.g. on disconnect) and the thread continued to access it.
Ideally Joystick::_activeVehicle would be changed to a weak pointer.
4 years ago
PX4BuildBot
48ff090b3a
Update PX4 Firmware metadata Wed Feb 17 19:19:37 UTC 2021
4 years ago
PX4BuildBot
2ca2cfeed3
Update PX4 Firmware metadata Wed Feb 17 14:24:41 UTC 2021
4 years ago
Yun Lin
7c42fecfe4
update Gstreamer version in readme to 1.18.1
...
(cherry picked from commit 7552c560bb7fc5eab1478edfdd3b78ab8c89c1c6)
4 years ago
david sastre
671943640d
TelemetryValuesBar: custom transparency by settings
...
Under some basemaps the default alpha value
for this panel was too transparent for the
user to see clearly the values. This commit
makes this alpha channel variable by a
setting under appsetings
4 years ago
Beat Küng
cbcc0db5e6
PX4AutoPilotPlugin: C-style cast -> static_cast
4 years ago
Beat Küng
7bca160575
fix PX4AutoPilotPlugin: avoid memory leaks
4 years ago
Beat Küng
77a0420a00
MC PX4: add flight behavior config page
4 years ago
Patrick José Pereira
0375698763
FTPManager: Fix struct definition
...
This fix a warning message in clang 11.
Moves from C struct definition to C++ standard style.
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
4 years ago
david sastre
b3f8b40d8a
Support for mavlink GPS2_RAW message
4 years ago
Matthias Grob
cc95825594
PostLink: only stage icu 56 if it exists
...
otherwise use the installed version.
E.g. at the time of writing latest version 68 works great.
4 years ago
Matthias Grob
d63b6ef621
Add setup script to build QGC on arch linux
4 years ago
Christoffer Björnram
2307567d4a
All iPhone app icons made square
...
The iPad app icons already was square, but the iPhone icons was rounded leading to black/white corners showing on the home screen.
4 years ago
PX4BuildBot
36f7c2212f
Update PX4 Firmware metadata Sat Feb 6 00:32:56 UTC 2021
4 years ago
Daniel Agar
d720591859
cmake updates and fixes
...
- use any Qt 5.12.x or 5.15.x version found
- prefers 5.12 over 5.15
- overridden by setting QT_VERSION
- add Compression (and XZ_EMBEDDED) to build
4 years ago
PX4BuildBot
bd97a60d82
Update PX4 Firmware metadata Thu Feb 4 10:17:00 UTC 2021
4 years ago
PX4BuildBot
8c0f7d8949
Update PX4 Firmware metadata Thu Feb 4 10:01:30 UTC 2021
4 years ago
Beat Küng
ebab8def79
metadata: remove unused gz files
4 years ago
Beat Küng
1a3e01bb3f
QGCCLZMA: use xz-embedded lib
4 years ago
Beat Küng
050961bf43
libs: add xz-embedded lzma decoding library
...
Using a mirror, because CI had problems cloning from the
original source:
gnutls_handshake() failed: Handshake failed
4 years ago
DonLakeFlyer
14a4e74db2
Switch COMPONENT_INFORMATION compression to lzma
4 years ago
PX4BuildBot
6174cf5ca3
Update PX4 Firmware metadata Wed Feb 3 21:01:37 UTC 2021
4 years ago
PX4BuildBot
fa2f2adfe3
Update PX4 Firmware metadata Wed Feb 3 17:24:40 UTC 2021
4 years ago
PX4BuildBot
7033dddcb8
Update PX4 Firmware metadata Mon Feb 1 10:31:32 UTC 2021
4 years ago
alessandro
21778ab252
linux_appimage: make sure OUTPUT_DIR exists
4 years ago
alessandro
154985124f
linux_appimage: canonicalize all path args
4 years ago
alessandro
bbbba36ff7
linux_appimage: canonicalize release_dir argument
...
When running the script and providing a local path as an
argument for the release directory, the rsync command would fail, because rsync
changes the directory and the relative path no longer applies.
4 years ago
PX4BuildBot
74b815981e
Update PX4 Firmware metadata Sun Jan 31 18:38:13 UTC 2021
4 years ago
Beat Küng
538b448ae0
joystick: fix crash on app exit
...
This fixes a pure virtual method call exception during exit when a joystick
is connected.
The problem was that ~Joystick() waited for the thread to exit, while the
thread called the virtual method _close(). But at this point the destructor
of the derived class (JoystickSDL in my case) was already called.
To resolve the problem a separate stop() method is added that is called
before deleting the object.
4 years ago
david sastre
bae87883a7
main.cc: Different runguard names for custom builds:
...
This way we can run at the same time regular and custom
so runguard will not block the execution of each other
4 years ago
david sastre
b6149c8974
MissionManager: get currentMissionIndex from High_lat messages as well:
...
High latency messages provide wp_num field, which
is meant to be used instead of MISSION_CURRENT when
we are under high latency link. This commit also
refactors the way of updating _lastCurrentIndex
from the 3 possible types of mavlink messages.
4 years ago
PX4BuildBot
3d364ec525
Update PX4 Firmware metadata Sat Jan 30 15:19:02 UTC 2021
4 years ago
PX4BuildBot
dda90860ea
Update PX4 Firmware metadata Sat Jan 30 11:20:19 UTC 2021
4 years ago
Aleksey Kontsevich
6ddf2a9ebb
Migrated to new Mapbox provider API
4 years ago
DonLakeFlyer
eb384dde6b
Fix stable/daily build determination
4 years ago
DonLakeFlyer
ef13749232
Fix 64 bit shift
4 years ago
DonLakeFlyer
130dadab97
Fix ability to write bytes to link
4 years ago
david sastre
8379e4d54b
PlanToolBarIndicators: Fix mission time representation:
...
For missions of less than 1 hour this indicator was showing
1 hour plus the minutes of the mission. Also for missions
longer than 24 hours we had overflow here.
4 years ago
Yun Lin
bc0a317fe8
fix typo
4 years ago