1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

CONFIG: AOCODAF722MINI Add missing motor 8 output (#12690)

Add missing motor 8 pin definition
This commit is contained in:
dawr68 2023-04-20 11:57:17 +02:00 committed by GitHub
parent 1fa44099e1
commit 271acf7ace
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,6 +43,7 @@
#define MOTOR5_PIN PA15
#define MOTOR6_PIN PB3
#define MOTOR7_PIN PB6
#define MOTOR8_PIN PB7
#define RX_PPM_PIN PA10
#define LED_STRIP_PIN PA8
#define UART1_TX_PIN PA9
@ -85,7 +86,8 @@
TIMER_PIN_MAP( 5, PA15, 1, 0) \
TIMER_PIN_MAP( 6, PB3 , 1, 0) \
TIMER_PIN_MAP( 7, PB6 , 1, 0) \
TIMER_PIN_MAP( 8, PA8 , 1, 2)
TIMER_PIN_MAP( 8, PB7 , 1, 0) \
TIMER_PIN_MAP( 9, PA8 , 1, 2)