1
0
Fork 0
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:
Dominic Clifton 2021-08-18 10:19:44 +02:00
parent 8ca4fdc586
commit faa69d0aeb

View file

@ -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