ardupilot/libraries/AP_BoardConfig/AP_BoardConfig.h
Andrew Tridgell 8095eb0bee AP_BoardConfig: added BRD_SAFETYENABLE option
this allows the safety switch to be disabled on startup
2014-02-11 15:58:25 +11:00

35 lines
618 B
C++

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
#ifndef __AP_BOARDCONFIG_H__
#define __AP_BOARDCONFIG_H__
#include <AP_HAL.h>
#include <AP_Common.h>
#include <AP_Param.h>
class AP_BoardConfig
{
public:
// constructor
AP_BoardConfig(void)
{
AP_Param::setup_object_defaults(this, var_info);
};
void init(void);
static const struct AP_Param::GroupInfo var_info[];
private:
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
AP_Int8 _pwm_count;
AP_Int8 _ser1_rtscts;
AP_Int8 _ser2_rtscts;
AP_Int8 _safety_enable;
#endif
};
#endif // __AP_BOARDCONFIG_H__