Subversion Repositories FlightCtrl

Rev

Rev 1141 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1141 Rev 1157
Line 34... Line 34...
34
 * nach Erreichen der Neutralstellung zu verzögern.
34
 * nach Erreichen der Neutralstellung zu verzögern.
35
 */
35
 */
36
static int      pitchNeutralTimer       = PITCH_NEUTRAL_TIMER;
36
static int      pitchNeutralTimer       = PITCH_NEUTRAL_TIMER;
Line 37... Line -...
37
 
-
 
38
 
-
 
39
void pitch_neutral_init( void ) {
-
 
40
        pitchNeutralDiff = eeprom_read_byte( &EEPromArray[ EEPROM_ADR_PITCH_NEUTRAL_DIFF ] );
-
 
Line 41... Line 37...
41
}
37
 
42
 
38
 
43
 
39
 
44
/*
40
/*
Line 330... Line 326...
330
        DebugOut.Analog[28] = pitchCount;
326
        DebugOut.Analog[28] = pitchCount;
331
        DebugOut.Analog[29] = pitchOffset;
327
        DebugOut.Analog[29] = pitchOffset;
Line 332... Line 328...
332
 
328
 
333
        return pitchCount;
329
        return pitchCount;
-
 
330
}
-
 
331
 
-
 
332
void pitch_neutral_init( void ) {
-
 
333
 
-
 
334
        printf("\r\npitch_mk_init()");
-
 
335
 
-
 
336
        pitchNeutralDiff = eeprom_read_byte( &EEPromArray[ EEPROM_ADR_PITCH_NEUTRAL_DIFF ] );
-
 
337
 
-
 
338
        pitchValueFP = pitch_neutral_value;
-
 
339
}