diff --git a/conf/settings/control/ctl_adaptive.xml b/conf/settings/control/ctl_adaptive.xml index 8d7138388d..6077e0cd82 100644 --- a/conf/settings/control/ctl_adaptive.xml +++ b/conf/settings/control/ctl_adaptive.xml @@ -13,12 +13,12 @@ - - - - - - + + + + + + diff --git a/conf/settings/control/ctl_new.xml b/conf/settings/control/ctl_new.xml index 198725ef96..49016b696c 100644 --- a/conf/settings/control/ctl_new.xml +++ b/conf/settings/control/ctl_new.xml @@ -13,12 +13,12 @@ - - - - - - + + + + + + diff --git a/conf/settings/control/ctl_new_airspeed.xml b/conf/settings/control/ctl_new_airspeed.xml index fe9c83ed2c..2b2e9422db 100644 --- a/conf/settings/control/ctl_new_airspeed.xml +++ b/conf/settings/control/ctl_new_airspeed.xml @@ -13,12 +13,12 @@ - - - - - - + + + + + + diff --git a/conf/settings/modules/dc.xml b/conf/settings/modules/dc.xml index 7763e2392f..a32aa51664 100644 --- a/conf/settings/modules/dc.xml +++ b/conf/settings/modules/dc.xml @@ -16,7 +16,7 @@ - + diff --git a/conf/settings/modules/enose.xml b/conf/settings/modules/enose.xml index 9da88c26de..b4abd356a8 100644 --- a/conf/settings/modules/enose.xml +++ b/conf/settings/modules/enose.xml @@ -4,8 +4,8 @@ - - + + diff --git a/conf/settings/modules/poles.xml b/conf/settings/modules/poles.xml index e164da3f07..56751801b3 100644 --- a/conf/settings/modules/poles.xml +++ b/conf/settings/modules/poles.xml @@ -5,7 +5,7 @@ - + diff --git a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.c b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.c index cc0cb1398e..708d5cf02b 100644 --- a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.c +++ b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.c @@ -1,6 +1,4 @@ /* - * Paparazzi $Id: fw_h_ctl.c 3603 2009-07-01 20:06:53Z hecto $ - * * Copyright (C) 2009-2010 The Paparazzi Team * * This file is part of paparazzi. diff --git a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.h b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.h index 4a7c082f22..80d8fec764 100644 --- a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.h +++ b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_adaptive.h @@ -1,6 +1,4 @@ /* - * Paparazzi $Id: fw_h_ctl.h 3784 2009-07-24 14:55:54Z poine $ - * * Copyright (C) 2009 ENAC * * This file is part of paparazzi. @@ -49,12 +47,12 @@ extern float h_ctl_pitch_of_roll; #define H_CTL_ROLL_SUM_ERR_MAX (MAX_PPRZ/2.) #define H_CTL_PITCH_SUM_ERR_MAX (MAX_PPRZ/2.) -#define fw_h_ctl_a_SetRollIGain(_gain) { \ +#define stabilization_adaptive_SetRollIGain(_gain) { \ h_ctl_roll_sum_err = 0.; \ h_ctl_roll_igain = _gain; \ } -#define fw_h_ctl_a_SetPitchIGain(_gain) { \ +#define stabilization_adaptive_SetPitchIGain(_gain) { \ h_ctl_pitch_sum_err = 0.; \ h_ctl_pitch_igain = _gain; \ } diff --git a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_attitude.h b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_attitude.h index ec0ad75fef..e50a0ad1a6 100644 --- a/sw/airborne/firmwares/fixedwing/stabilization/stabilization_attitude.h +++ b/sw/airborne/firmwares/fixedwing/stabilization/stabilization_attitude.h @@ -90,7 +90,7 @@ extern float h_ctl_lo_throttle_roll_rate_pgain; extern float h_ctl_roll_rate_igain; extern float h_ctl_roll_rate_dgain; -#define fw_h_ctl_SetRollRatePGain(v) { h_ctl_hi_throttle_roll_rate_pgain = v; h_ctl_lo_throttle_roll_rate_pgain = v; } +#define stabilization_attitude_SetRollRatePGain(v) { h_ctl_hi_throttle_roll_rate_pgain = v; h_ctl_lo_throttle_roll_rate_pgain = v; } #endif extern void h_ctl_init( void );