Randy Mackay
65c8f87b17
AP_Frsky_Telem: only use downward facing rangefinder
8 years ago
Peter Barker
89afa913f1
AP_Frsky_Telem: Support for a GCS singleton
8 years ago
Florent Martel
abc2cdb61b
AP_FrSky_Telem: fixed sign of vertical velocity (+ve up)
8 years ago
floaledm
60c59bea4d
AP_Frsky_Telem: make frsky_telemetry available to GCS_MAVLINK
8 years ago
Florent Martel
530955c15f
AP_Frsky_Telem: remove arming check for transmitting params
...
Otherwise, on Plane, if ARMING REQUIRED is set to 0 (automatically
armed), no parameters are transmitted.
8 years ago
Florent Martel
5a96db5a44
AP_Frsky_Telem: replaced timer cond > with >=
8 years ago
Florent Martel
e43b2a73da
AP_Frsky_Telem: increase sending params priority
...
If there's a lot of messages in the queue, params would not be
transmitted for a while, until the queue is empty, which can take a bit
of time during init.
8 years ago
Florent Martel
75905be376
AP_Frsky_Telem: simplified set_is_flying and moved to header file
8 years ago
Florent Martel
bc4ab70c1c
AP_Frsky_Telem: added const to some declarations
8 years ago
floaledm
68b10979c3
AP_Frsky_Telem: added extra parentheses around pointed to values for readability
...
As suggested by tridge
8 years ago
Florent Martel
328e6d6886
AP_Frsky_Telem: removed sending redundant VSpd, Alt, and VFAS sensor values, which can now be handled by OpenTX
8 years ago
murata
c808ee2f49
Global: To nullptr from NULL.
...
RC_Channel: To nullptr from NULL.
AC_Fence: To nullptr from NULL.
AC_Avoidance: To nullptr from NULL.
AC_PrecLand: To nullptr from NULL.
DataFlash: To nullptr from NULL.
SITL: To nullptr from NULL.
GCS_MAVLink: To nullptr from NULL.
DataFlash: To nullptr from NULL.
AP_Compass: To nullptr from NULL.
Global: To nullptr from NULL.
Global: To nullptr from NULL.
8 years ago
floaledm
5386edb791
AP_Frsky_Telem: fix setting of land_complete flag
...
When is_flying is true, land_complete should be set to 0, and
conversely.
8 years ago
floaledm
1aab5eec38
AP_Frsky_Telem: send ap_status only once initialized
...
Same as what is found in GCS_MAVLink.cpp for copter
8 years ago
floaledm
7045013933
AP_Frsky_Telem: use airspeed value w/o constraints of ground speed and AHRS_WIND_MAX
8 years ago
floaledm
6869dace08
AP_Frsky_Telem: moved msg queueing of fw string
8 years ago
floaledm
56432f04d3
AP_Frsky_Telem: fixed airspeed; now same as VFR_HUD
8 years ago
Mathieu OTHACEHE
152edf7189
Global: remove mode line from headers
...
Using a global .dir-locals.el file is a better alternative than
reincluding the same emacs header in every file of the project.
8 years ago
Peter Barker
6ccf36439d
AP_Frsky_Telem: actually set _ap.value flags based in is_flying
...
Closes #5017
8 years ago
floaledm
49e47fd679
AP_Frsky_Telem: airspeed scaling factor fix
8 years ago
floaledm
602b81a4d7
AP_Frsky_Telem: add ekf_status check
8 years ago
Tom Pittenger
99d48d8bbd
AP_FrSky_Telem: cleanup, non-functional change
8 years ago
floaledm
fcfaa98bb6
AP_Frsky_Telem: reworked _statustext_queue.empty() check
8 years ago
Tom Pittenger
8001cc403b
AP_Frsky_Telem: fix is_flying assignment
8 years ago
floaledm
5e022bf631
AP_Frsky_Telem: fix *_ap.value issue for Plane
...
set_is_flying does operations on a nullptr, plus we loose the ability to
update ap_status accordingly for Plane
8 years ago
floaledm
ff0d0b1aa5
AP_Frsky_Telem: use ringbuffer for Frsky message queueing
8 years ago
Tom Pittenger
b3d5375aa0
AP_Frsky_Telem: simplify init by assuming everything is nullptr
...
- also always queue the firmware message regardless of protocol type
8 years ago
Tom Pittenger
6991ca53b3
AP_Frsky_Telem: allow default arguments in init() to set things to nullptr
8 years ago
floaledm
94aa6c4cfb
AP_Frsky_Telem: consolidate into a single frsky.init()
8 years ago
Tom Pittenger
8eb7a062c7
AP_Frsky_Telem: tiny text change in statusText
9 years ago
floaledm
9e0cfc81ea
AP_Frsky_Telem: updated sensor_status messages according to what is found in Mission Planner
...
added "NO RC Receiver" and "Bad Logging"
9 years ago
floaledm
5125846ac0
AP_Frsky_Telem: Plane support
9 years ago
floaledm
b2b6c88edf
AP_Frsky_Telem: renamed vars and funcs for consistency/clarity
9 years ago
floaledm
4d03be94cf
AP_Frsky_Telem: removed reliance on home_distance and home_bearing which are only in copter
9 years ago
floaledm
33bd359463
AP_Frsky_Telem: LANDCOMPLETE switched to to ISFLYING flag
9 years ago
floaledm
4dc98faa48
AP_Frsky_Telem: transmit airspeed instead of groundspeed, if available
9 years ago
floaledm
8deba69715
AP_Frsky_Telem: added 1 to control_mode passed on Frsky link
9 years ago
floaledm
4f8cea6844
AP_Frsky_Telem: simplified constructor
9 years ago
Andrew Tridgell
acbeb29fbe
AP_Frsky_Telem: use const references where possible
...
save some stack space
9 years ago
Andrew Tridgell
a4ca4dbd9e
AP_FrSky_Telem: use a constant string for firmware version
9 years ago
Andrew Tridgell
62388fc991
AP_FrSky_Telem: use constant strings in message queueing
9 years ago
Andrew Tridgell
183283ba07
AP_FrSky_Telem: make _msg non-static
...
there are no calls to this from outside the library. If we do add some
then we can change the API as needed
9 years ago
floaledm
2f54e67996
AP_FrSky_Telem: fixed sending last message chunk
...
Was sent only once, now sent 3 times (as planned)
9 years ago
Andrew Tridgell
185ef73684
AP_Frsky_Telem: fixed usage of sensor error bits
...
using these asyncronously via pointers is error prone as the updates
to these masks is not atomic relative to the IO callback in
AP_Frsky_Telem
9 years ago
Andrew Tridgell
f4d59d720a
AP_FrSky_Telem: removed use of pointer to control_mode
...
it is an enum, and it is invalid to take a pointer to an enum as a
uint8_t*
9 years ago
Andrew Tridgell
ab77fdfa02
AP_FrSky_Telem: removed dependency on inertialnav
...
the AP_InertialNav library is deprecated in favor of AP_AHRS. We
should not introduce a new dependency on it
9 years ago
floaledm
b71e0d73b9
AP_FrSky_Telem: added SPort passthrough protocol
9 years ago
floaledm
a9b01b470c
AP_FrSky_Telem: cosmetic changes
9 years ago
floaledm
de2a7013b4
AP_FrSky: simplified lib rework
9 years ago
Ricardo de Almeida Gonzaga
08a022fa6a
AP_Frsky_Telem: Fix typos
9 years ago