summaryrefslogtreecommitdiff
path: root/src/components/timer
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-17 08:21:42 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-17 08:21:42 (GMT)
commitd73be76905c131c9d459cbb4e44be4bfc87dfddb (patch)
treed1a1b09c9757e8cbbe0d381dbc60baf9d8451192 /src/components/timer
parent3e5fddede322814c2fea7634c1bf0d5f93bae315 (diff)
Simplify MotorController timer code
Diffstat (limited to 'src/components/timer')
-rw-r--r--src/components/timer/TimerController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/timer/TimerController.cpp b/src/components/timer/TimerController.cpp
index fa00d3c..9802ded 100644
--- a/src/components/timer/TimerController.cpp
+++ b/src/components/timer/TimerController.cpp
@@ -15,7 +15,7 @@ namespace {
}
}
-void Init(System::SystemTask* systemTask) {
+void TimerController::Init(System::SystemTask* systemTask) {
this->systemTask = systemTask;
timerAppTimer = xTimerCreate("timerAppTm", 1, pdFALSE, this, TimerEnd);
}