summaryrefslogtreecommitdiff
path: root/src/components/motor/MotorController.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/motor/MotorController.cpp')
-rw-r--r--src/components/motor/MotorController.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/motor/MotorController.cpp b/src/components/motor/MotorController.cpp
index 738e6d33..51a01b4c 100644
--- a/src/components/motor/MotorController.cpp
+++ b/src/components/motor/MotorController.cpp
@@ -4,6 +4,7 @@
#include "app_timer.h"
#include "nrf_drv_clock.h"
+APP_TIMER_DEF(vibTimer);
using namespace Pinetime::Controllers;
@@ -36,4 +37,4 @@ void MotorController::SetDuration(uint8_t motorDuration) {
nrf_gpio_pin_clear(pinMotor);
//start timer for motorDuration miliseconds
app_timer_start(vibTimer, APP_TIMER_TICKS(motorDuration), NULL); //timers trigger at end of duration?
-} \ No newline at end of file
+}