Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_AIS/AP_AIS_config.h
9773 views
1
#pragma once
2
3
#include <AP_HAL/AP_HAL_Boards.h>
4
5
#ifndef AP_AIS_ENABLED
6
#if HAL_PROGRAM_SIZE_LIMIT_KB <= 1024
7
#define AP_AIS_ENABLED 0
8
#else
9
#define AP_AIS_ENABLED 2
10
#endif
11
#endif
12
13