Whitespace cleanup

This commit is contained in:
blckmn 2017-02-19 17:57:34 +11:00
parent 8e9be424ce
commit d8e8fbf271
3 changed files with 4 additions and 5 deletions

View File

@ -117,4 +117,4 @@ void targetValidateConfiguration(master_t *config)
if (hardwareRevision < NAZE32_REV5 && config->accelerometerConfig.acc_hardware == ACC_ADXL345) {
config->accelerometerConfig.acc_hardware = ACC_NONE;
}
}
}

View File

@ -50,7 +50,7 @@
#define USE_EXTI
#define MAG_INT_EXTI PC14
#define MPU_INT_EXTI PC13
#define MMA8451_INT_PIN PA5
#define MMA8451_INT_PIN PA5
#define USE_MPU_DATA_READY_SIGNAL
#define USE_MAG_DATA_READY_SIGNAL

View File

@ -15,7 +15,6 @@
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <platform.h>
#include "config/config_master.h"
@ -23,10 +22,10 @@
void targetValidateConfiguration(master_t *config)
{
UNUSED(config);
UNUSED(config);
if (featureConfigured(FEATURE_RX_PARALLEL_PWM)) {
// led strip needs the same ports
featureClear(FEATURE_LED_STRIP);
}
}
}