use name of pwm (#3393)

This commit is contained in:
Matthew Kennedy 2021-10-22 12:23:53 -07:00 committed by GitHub
parent 7da3a8116d
commit 0fe2721556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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--;
}