use name of pwm (#3393)

This commit is contained in:
Matthew Kennedy 2021-10-22 12:23:53 -07:00 committed by GitHub
parent d9e06875a2
commit 847dbaf7a8
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ static void timerCallback(PwmConfig *state) {
return;
}
state->executor->scheduleByTimestampNt("pwm", &state->scheduling, switchTimeNt, { timerCallback, state });
state->executor->scheduleByTimestampNt(state->name, &state->scheduling, switchTimeNt, { timerCallback, state });
state->dbgNestingLevel--;
}