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

Keeping debug naming in-line with existing function naming convention.

This commit is contained in:
blckmn 2021-09-07 13:51:53 +10:00 committed by Michael Keller
parent 64d1694105
commit 554128e4d1
4 changed files with 19 additions and 20 deletions

View file

@ -293,7 +293,7 @@ static void bbSetupDma(bbPort_t *bbPort)
void bbDMAIrqHandler(dmaChannelDescriptor_t *descriptor)
{
DEBUG_HI(0);
dbgPinHi(0);
bbPort_t *bbPort = (bbPort_t *)descriptor->userParam;
@ -326,7 +326,7 @@ void bbDMAIrqHandler(dmaChannelDescriptor_t *descriptor)
}
}
#endif
DEBUG_LO(0);
dbgPinLo(0);
}
// Setup bbPorts array elements so that they each have a TIM1 or TIM8 channel
@ -700,8 +700,8 @@ dshotBitbangStatus_e dshotBitbangGetStatus()
motorDevice_t *dshotBitbangDevInit(const motorDevConfig_t *motorConfig, uint8_t count)
{
DEBUG_LO(0);
DEBUG_LO(1);
dbgPinLo(0);
dbgPinLo(1);
motorPwmProtocol = motorConfig->motorPwmProtocol;
bbDevice.vTable = bbVTable;