/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/motors.cc

  • Committer: Tim Marston
  • Date: 2014-01-22 23:54:34 UTC
  • Revision ID: tim@ed.am-20140122235434-lgc7n5xdoljkiwco
completed (hopefully) the RC interface software

Show diffs side-by-side

added added

removed removed

9
9
#include <limits.h>
10
10
 
11
11
 
 
12
static int channels_[ NUM_MOTORS ];
 
13
 
 
14
 
12
15
void Motors::setup()
13
16
{
14
17
        // setup outputs
15
18
        for( int pin = FIRST_PIN; pin < FIRST_PIN + NUM_CHANNELS; pin++ ) {
16
19
                pinMode( pin, OUTPUT );
17
20
                digitalWrite( pin, LOW );
18
 
        }       
 
21
        }
 
22
 
 
23
        // reset channel values
 
24
        for( int a = 0; a < NUM_MOTORS; a++ )
 
25
                channels_[ a ] = 0;
19
26
}
20
27
 
21
28
 
22
 
static signed long calculate_duration( unsigned long then, unsigned long now )
 
29
void Motors::set_values( int channel_values[] )
23
30
{
24
 
        // does it look like now has overflowed (and wrapped)?
25
 
        if( now < then && now < ( ULONG_MAX / 2 ) && then > ( ULONG_MAX / 2 ) )
26
 
                return now + ( ULONG_MAX - then );
27
 
        
28
 
        // else, calculate duration
29
 
        else
30
 
                return now - then;
 
31
        for( int a = 0; a < NUM_MOTORS; a++ )
 
32
                channels_[ a ] = channel_values[ a ];
31
33
}
32
34
 
33
35
 
34
 
void Motors::update_channels( int channels[] )
 
36
void Motors::update()
35
37
{
36
38
        static int event = NUM_CHANNELS * 2;
37
39
        unsigned long now = micros();
52
54
                // calculate the time that the next event will occur
53
55
                next_event_at = frame_start + ( event / 2 ) * CHANNEL_INTERVAL;
54
56
                if( event & 1 )
55
 
                        next_event_at += MIN_PULSE_WIDTH + channels[ event / 2 ] *
56
 
                                ( MAX_PULSE_WIDTH - MIN_PULSE_WIDTH ) / MAX_CHANNEL_VALUE;
57
 
 
58
 
//              Serial.print( event / 2 );
59
 
//              Serial.print( ( event & 1 )? 'v' : '^' );
60
 
//              Serial.print( " " );
61
 
//              Serial.println( next_event_at );
62
 
 
63
 
                if( event == 1 ) {
64
 
                        unsigned long width = MIN_PULSE_WIDTH +
65
 
                                (unsigned long)channels[ event / 2 ] *
66
 
                                ( MAX_PULSE_WIDTH - MIN_PULSE_WIDTH ) / MAX_CHANNEL_VALUE;
67
 
                        Serial.print( channels[ event / 2 ] );
68
 
                        Serial.print( " " );
69
 
                        Serial.println( width );
70
 
                }
 
57
                        next_event_at += MIN_PULSE_WIDTH + channels_[ event / 2 ] *
 
58
                                ( MAX_PULSE_WIDTH - MIN_PULSE_WIDTH ) / MAX_CHANNEL_VALUE;
 
59
 
 
60
                // Serial.print( event / 2 );
 
61
                // Serial.print( ( event & 1 )? 'v' : '^' );
 
62
                // Serial.print( " " );
 
63
                // Serial.println( next_event_at );
 
64
 
 
65
                // if( event == 1 ) {
 
66
                //      unsigned long width = MIN_PULSE_WIDTH +
 
67
                //              (unsigned long)channels_[ event / 2 ] *
 
68
                //              ( MAX_PULSE_WIDTH - MIN_PULSE_WIDTH ) / MAX_CHANNEL_VALUE;
 
69
                //      Serial.print( channels_[ event / 2 ] );
 
70
                //      Serial.print( " " );
 
71
                //      Serial.println( width );
 
72
                // }
71
73
        }
72
74
}