/elec/quadcopter

To get this branch, use:
bzr branch http://bzr.ed.am/elec/quadcopter
16 by Tim Marston
added (unfinished) rc-interface module to src; added arduino.mk
1
//
2
// receiver.h
3
//
4
5
#ifndef RECEIVER_H_
6
#define RECEIVER_H_
7
8
9
namespace Receiver
10
{
11
	/**
12
	 * Setup the Arduino as required.
13
	 */
14
	void setup();
15
	
16
	/**
17
	 * Attempt to read channels.  The call is non-blocking and reutrns true if a
18
	 * full frame of NUM_CHANNELS has been read.
19
	 * @param channel_values an array to store channel values in
20
	 * @returns true if a frame has been read
21
	 */
22
	bool read_channels( unsigned long channel_values[] );
23
24
}
25
26
27
#endif //RECEIVER_H_