mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 19:40:31 +03:00
Rename timer functions to make them easier to understand.
This commit is contained in:
parent
9eda7b4735
commit
4d79c0fbd2
5 changed files with 16 additions and 19 deletions
|
@ -1589,7 +1589,7 @@ static void cliSerialPassthrough(const char *cmdName, char *cmdline)
|
|||
for (unsigned i = 0; i < motorsCount; i++) {
|
||||
const ioTag_t tag = motorConfig()->dev.ioTags[i];
|
||||
if (tag) {
|
||||
const timerHardware_t *timerHardware = timerGetByTag(tag);
|
||||
const timerHardware_t *timerHardware = timerGetConfiguredByTag(tag);
|
||||
if (timerHardware) {
|
||||
IO_t io = IOGetByTag(tag);
|
||||
IOInit(io, OWNER_MOTOR, 0);
|
||||
|
@ -5646,7 +5646,7 @@ static void cliDmaopt(const char *cmdName, char *cmdline)
|
|||
#if defined(USE_TIMER_MGMT)
|
||||
timerIoConfig = timerIoConfigByTag(ioTag);
|
||||
#endif
|
||||
timer = timerGetByTag(ioTag);
|
||||
timer = timerGetConfiguredByTag(ioTag);
|
||||
}
|
||||
|
||||
// opt or list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue