Browse Source
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1263 f9c3cf11-9bcb-44bc-f272-b75c42450872mission-4.1.18
james.goppert
14 years ago
3 changed files with 18 additions and 18 deletions
@ -1,24 +1,24 @@ |
|||||||
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
||||||
|
|
||||||
/// @file RC_ChannelB.h
|
/// @file AP_RcChannel.h
|
||||||
/// @brief RC_ChannelB manager
|
/// @brief AP_RcChannel manager
|
||||||
|
|
||||||
#ifndef RC_ChannelB_h |
#ifndef AP_RcChannel_h |
||||||
#define RC_ChannelB_h |
#define AP_RcChannel_h |
||||||
|
|
||||||
#include <stdint.h> |
#include <stdint.h> |
||||||
#include <FastSerial.h> |
#include <FastSerial.h> |
||||||
|
|
||||||
/// @class RC_ChannelB
|
/// @class AP_RcChannel
|
||||||
/// @brief Object managing one RC channel
|
/// @brief Object managing one RC channel
|
||||||
//
|
//
|
||||||
class RC_ChannelB{ |
class AP_RcChannel{ |
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Constructor
|
/// Constructor
|
||||||
///
|
///
|
||||||
RC_ChannelB(const float & scale, const uint16_t & pwmMin, const uint16_t & pwmNeutral, |
AP_RcChannel(const float & scale, const uint16_t & pwmMin, const uint16_t & pwmNeutral, |
||||||
const uint16_t & pwmMax, const uint16_t & pwmDeadZone, |
const uint16_t & pwmMax, const uint16_t & pwmDeadZone, |
||||||
const bool & filter, const bool & reverse) : |
const bool & filter, const bool & reverse) : |
||||||
_scale(scale), |
_scale(scale), |
Loading…
Reference in new issue