mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 04:45:24 +03:00
Debug - Fix dbgPinLo checking the first pin instead of the desired pin.
This commit is contained in:
parent
8ca4fdc586
commit
faa69d0aeb
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ void dbgPinLo(int index)
|
|||
|
||||
dbgPin_t *dbgPin = &dbgPins[index];
|
||||
|
||||
if (dbgPins->gpio) {
|
||||
if (dbgPin->gpio) {
|
||||
#if defined(STM32F7)
|
||||
dbgPin->gpio->BSRR = dbgPin->resetBSRR;
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue