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

Fix compilation when not using USE_DSHOT_BITBANG

This commit is contained in:
justinflipflops 2022-02-19 17:05:38 -05:00
parent f179c6435b
commit c8b31f0dd0

View file

@ -106,7 +106,7 @@ const resourceOwner_t *timerGetOwner(const timerHardware_t *timer)
#if defined(USE_DSHOT_BITBANG)
return dshotBitbangTimerGetOwner(timer);
#else
return timerOwner;
return &freeOwner;
#endif
}