2021-01-16 03:11:53 +00:00
|
|
|
#include "MotorController.h"
|
|
|
|
#include <hal/nrf_gpio.h>
|
|
|
|
#include "systemtask/SystemTask.h"
|
|
|
|
#include "app_timer.h"
|
|
|
|
|
2021-01-25 17:44:58 +00:00
|
|
|
APP_TIMER_DEF(vibTimer);
|
2021-01-16 03:11:53 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
|
|
|
void MotorController::Init() {
|
2021-02-05 16:06:56 +00:00
|
|
|
nrf_gpio_cfg_output(pinMotor);
|
2021-01-16 03:11:53 +00:00
|
|
|
nrf_gpio_pin_set(pinMotor);
|
2021-02-05 16:06:56 +00:00
|
|
|
app_timer_init();
|
|
|
|
app_timer_create(&vibTimer, APP_TIMER_MODE_SINGLE_SHOT, vibrate);
|
2021-01-16 03:11:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MotorController::SetDuration(uint8_t motorDuration) {
|
|
|
|
nrf_gpio_pin_clear(pinMotor);
|
2021-02-05 16:06:56 +00:00
|
|
|
/* Start timer for motorDuration miliseconds and timer triggers vibrate() when it finishes*/
|
|
|
|
app_timer_start(vibTimer, APP_TIMER_TICKS(motorDuration), NULL);
|
2021-01-25 17:44:58 +00:00
|
|
|
}
|
2021-02-05 16:06:56 +00:00
|
|
|
|
|
|
|
void MotorController::vibrate(void * p_context) {
|
|
|
|
nrf_gpio_pin_set(pinMotor);
|
|
|
|
}
|