Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_Arming/AP_Arming_config.h
9747 views
1
#pragma once
2
3
#include <AP_HAL/AP_HAL_Boards.h>
4
5
#ifndef AP_ARMING_ENABLED
6
#define AP_ARMING_ENABLED 1
7
#endif
8
9
#ifndef AP_ARMING_AUX_AUTH_ENABLED
10
#define AP_ARMING_AUX_AUTH_ENABLED AP_SCRIPTING_ENABLED
11
#endif
12
13
#ifndef AP_ARMING_CRASHDUMP_ACK_ENABLED
14
#define AP_ARMING_CRASHDUMP_ACK_ENABLED AP_CRASHDUMP_ENABLED
15
#endif
16
17