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