mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-29 20:18:31 -04:00
AP_Logger: add a Write_Rally method
This commit is contained in:
parent
a1557184d5
commit
a5f5b4349c
@ -703,6 +703,11 @@ void AP_Logger::Write_RallyPoint(uint8_t total,
|
|||||||
FOR_EACH_BACKEND(Write_RallyPoint(total, sequence, rally_point));
|
FOR_EACH_BACKEND(Write_RallyPoint(total, sequence, rally_point));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AP_Logger::Write_Rally()
|
||||||
|
{
|
||||||
|
FOR_EACH_BACKEND(Write_Rally());
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t AP_Logger::num_dropped() const
|
uint32_t AP_Logger::num_dropped() const
|
||||||
{
|
{
|
||||||
if (_next_backend == 0) {
|
if (_next_backend == 0) {
|
||||||
|
@ -236,6 +236,7 @@ public:
|
|||||||
void Write_RCIN(void);
|
void Write_RCIN(void);
|
||||||
void Write_RCOUT(void);
|
void Write_RCOUT(void);
|
||||||
void Write_RSSI();
|
void Write_RSSI();
|
||||||
|
void Write_Rally();
|
||||||
void Write_Baro(uint64_t time_us=0);
|
void Write_Baro(uint64_t time_us=0);
|
||||||
void Write_Power(void);
|
void Write_Power(void);
|
||||||
void Write_AHRS2(AP_AHRS &ahrs);
|
void Write_AHRS2(AP_AHRS &ahrs);
|
||||||
|
Loading…
Reference in New Issue
Block a user