Revert "Fix: buzzer often starts beeping continuously on ESCs read"

This reverts commit 2afeefb753.
This commit is contained in:
4712 2015-10-01 01:12:05 +02:00
parent 2afeefb753
commit 3b3e630bc4
1 changed files with 0 additions and 6 deletions

View File

@ -94,12 +94,6 @@ void usb1WireInitialize()
for (volatile uint8_t i = 0; i < ESC_COUNT; i++) { for (volatile uint8_t i = 0; i < ESC_COUNT; i++) {
gpio_set_mode(escHardware[i].gpio, (1U << escHardware[i].pinpos), Mode_IPU); //GPIO_Mode_IPU gpio_set_mode(escHardware[i].gpio, (1U << escHardware[i].pinpos), Mode_IPU); //GPIO_Mode_IPU
} }
#ifdef BEEPER
// fix for buzzer often starts beeping continuously when the ESCs are read
// switch beeper off until reboot
gpio_set_mode(BEEP_GPIO, BEEP_PIN, Mode_IPU); //GPIO_Mode_IPU
#endif
} }
#ifdef STM32F10X #ifdef STM32F10X