Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix AOCODARCH7DUAL Buzzer continous beeping issue #9143

Merged
merged 1 commit into from Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/target/AOCODARCH7DUAL/target.c
Expand Up @@ -48,6 +48,7 @@ timerHardware_t timerHardware[] = {
DEF_TIM(TIM15, CH2, PE6, TIM_USE_MC_SERVO | TIM_USE_FW_SERVO, 0, 0), // S12 DMA_NONE

DEF_TIM(TIM1, CH1, PA8, TIM_USE_LED, 0, 9), // LED_2812
DEF_TIM(TIM2, CH1, PA15, TIM_USE_BEEPER, 0, 0), // BEEPER PWM

};

Expand Down
1 change: 1 addition & 0 deletions src/main/target/AOCODARCH7DUAL/target.h
Expand Up @@ -28,6 +28,7 @@

#define BEEPER PA15
#define BEEPER_INVERTED
#define BEEPER_PWM_FREQUENCY 2500

// *************** IMU generic ***********************
#define USE_DUAL_GYRO
Expand Down