/elec/quadcopter

To get this branch, use:
bzr branch http://bzr.ed.am/elec/quadcopter

« back to all changes in this revision

Viewing changes to src/rc-interface/comms.h

  • Committer: Tim Marston
  • Date: 2014-02-26 22:33:50 UTC
  • Revision ID: tim@ed.am-20140226223350-6618z7cy7yxchsas
rc-interface: added code to read from serial and set motor channel values

Show diffs side-by-side

added added

removed removed

16
16
        /**
17
17
         * Write channel values.
18
18
         *
19
 
         * @param channel_values array of values
 
19
         * @param channel_values array of NUM_CHANNELS values
20
20
         */
21
21
        void write_channels( int channels[] );
 
22
 
 
23
        /**
 
24
         * Read channel values.  Call often.  If a complete frame is read,
 
25
         * channel_values will contain the data.
 
26
         *
 
27
         * @param channel_values array of NUM_MOTORS values
 
28
         * @returns true if a whole frame was read
 
29
         */
 
30
        bool read_channels( int channels[] );
22
31
}
23
32
 
24
33