mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 06:58:27 -04:00
f544b20747
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1215 f9c3cf11-9bcb-44bc-f272-b75c42450872
17 lines
211 B
C++
17 lines
211 B
C++
#ifndef AP_RC_h
|
|
#define AP_RC_h
|
|
|
|
#include <inttypes.h>
|
|
|
|
class AP_RC
|
|
{
|
|
private:
|
|
public:
|
|
AP_RC();
|
|
void init();
|
|
void output_ch_pwm(uint8_t ch, uint16_t pwm);
|
|
uint16_t input_ch(uint8_t ch);
|
|
};
|
|
|
|
#endif
|