mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
AP_VideoTX: Add configuration_finished functions
This commit is contained in:
parent
4dac9baa09
commit
0af5a7787a
@ -112,6 +112,9 @@ public:
|
|||||||
// display the current VTX settings in the GCS
|
// display the current VTX settings in the GCS
|
||||||
void announce_vtx_settings() const;
|
void announce_vtx_settings() const;
|
||||||
|
|
||||||
|
void set_configuration_finished(bool configuration_finished) { _configuration_finished = configuration_finished; }
|
||||||
|
bool is_configuration_finished() { return _configuration_finished; }
|
||||||
|
|
||||||
static AP_VideoTX *singleton;
|
static AP_VideoTX *singleton;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -142,6 +145,8 @@ private:
|
|||||||
bool _initialized;
|
bool _initialized;
|
||||||
// when defaults have been configured
|
// when defaults have been configured
|
||||||
bool _defaults_set;
|
bool _defaults_set;
|
||||||
|
// true when configuration have been applied succesfully to the VTX
|
||||||
|
bool _configuration_finished;
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace AP {
|
namespace AP {
|
||||||
|
Loading…
Reference in New Issue
Block a user