AP_Notify: Buzzer: change pin 11(P8_31) to pin 12(P8_32)

Avoid boot conflict during power on.
This commit is contained in:
Vinicius Juvinski 2016-05-18 20:02:51 -03:00 committed by Lucas De Marchi
parent a9ae5476f3
commit ed2718a183

View File

@ -22,7 +22,7 @@
#if CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN
# define BUZZER_PIN 32
#elif CONFIG_HAL_BOARD == HAL_BOARD_LINUX && CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BBBMINI
# define BUZZER_PIN 10 // GPIO P8_31
# define BUZZER_PIN 11 // GPIO P8_32
#else
# define BUZZER_PIN 0 // pin undefined on other boards
#endif