Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 2115 → Rev 2116

/branches/dongfang_FC_fixedwing/arduino_atmega328/configuration.h
111,9 → 111,11
*/
 
typedef struct {
uint8_t trim;
uint8_t variableOffset;
uint8_t channels[MAX_CHANNELS];
} channelMap_t;
extern channelMap_t channelMap;
} ChannelMap_t;
extern ChannelMap_t channelMap;
 
typedef struct {
int16_t offsets[3];
125,7 → 127,7
uint8_t minValue;
uint8_t maxValue;
uint8_t flags;
} servo_t;
} Servo_t;
 
#define SERVO_STABILIZATION_REVERSE 1
 
162,8 → 164,11
uint8_t controlServosReverse;
 
uint8_t servoCount;
uint8_t controlServoMinValue;
uint8_t controlServoMaxValue;
 
uint8_t servoManualMaxSpeed;
servo_t servoConfigurations[2]; // [PITCH, ROLL]
Servo_t servoConfigurations[2]; // [PITCH, ROLL]
 
// Outputs
output_flash_t outputFlash[2];