1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 17:55:28 +03:00

Fix typo USE_PMW_SERVO_DRIVER -> USE_PWM_SERVO_DRIVER

This commit is contained in:
Michel Pastor 2018-07-25 17:46:30 +02:00
parent 14738b5c90
commit c717c49985
7 changed files with 10 additions and 10 deletions

View file

@ -336,7 +336,7 @@ void init(void)
pwmRxInit(systemConfig()->pwmRxInputFilteringMode);
#endif
#ifdef USE_PMW_SERVO_DRIVER
#ifdef USE_PWM_SERVO_DRIVER
/*
If external PWM driver is enabled, for example PCA9685, disable internal
servo handling mechanism, since external device will do that
@ -674,7 +674,7 @@ void init(void)
if (feature(FEATURE_VBAT | FEATURE_CURRENT_METER))
batteryInit();
#ifdef USE_PMW_SERVO_DRIVER
#ifdef USE_PWM_SERVO_DRIVER
if (feature(FEATURE_PWM_SERVO_DRIVER)) {
pwmDriverInitialize();
}