//default settings
///////////////////////////////////////////////////////////////////////////////////////////////////
static uint8_t GimbalType = 0; // 0 normal / 1 = nanowii auf dem gimbal
static uint8_t servoType = 0; // 0 50Hz / 1 = 300Hz
// nur wenn GimablType = 1
static uint8_t Proll = 100; // P für Roll (100 = 10)
static uint8_t Ppitch = 100; // P für Pitch (100 = 10)
static uint8_t Iroll = 100; // I für Roll (100 = 0.0100)
static uint8_t Ipitch = 100; // I für Pitch (100 = 0.0100)
static uint8_t RServoLPF = 20; // Roll Low pass filter
static uint8_t PServoLPF = 20; // Pitch Low pass filter
// für beide typen
static uint8_t TravelMultiRoll = 130; //%
static uint8_t TravelMultiPitch = 130; //%
static uint16_t TravelMinPitch = 1000;
static uint16_t TravelMaxPitch = 2000;
static uint16_t TravelMinRoll = 1000;
static uint16_t TravelMaxRoll = 2000;
static uint16_t TravelMidRoll = 1500;
static uint16_t TravelMidPitch = 1500;
static int8_t TravelDirectionPitch = 1; // -1 zum invertieren
static int8_t TravelDirectionRoll = 1; // -1 zum invertieren