AP_Module: correct ModuleTest example for lack of GCS object

This commit is contained in:
Peter Barker 2022-08-19 10:40:56 +10:00 committed by Peter Barker
parent f0fc23bdcb
commit 19973f783b
1 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,12 @@
#include <AP_GPS/AP_GPS.h>
#include <AP_Baro/AP_Baro.h>
#include <AP_ExternalAHRS/AP_ExternalAHRS.h>
#include <GCS_MAVLink/GCS_Dummy.h>
const struct AP_Param::GroupInfo GCS_MAVLINK_Parameters::var_info[] = {
AP_GROUPEND
};
GCS_Dummy _gcs;
void setup();
void loop();