InfiniTime/src/components/motor/MotorController.cpp

44 lines
1.1 KiB
C++
Raw Normal View History

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-08-03 18:32:23 +00:00
#include "drivers/PinMap.h"
2021-01-16 03:11:53 +00:00
APP_TIMER_DEF(shortVibTimer);
APP_TIMER_DEF(longVibTimer);
2021-01-16 03:11:53 +00:00
using namespace Pinetime::Controllers;
void MotorController::Init() {
2021-08-03 18:32:23 +00:00
nrf_gpio_cfg_output(PinMap::Motor);
nrf_gpio_pin_set(PinMap::Motor);
app_timer_init();
2021-08-01 08:47:26 +00:00
2021-08-01 10:05:48 +00:00
app_timer_create(&shortVibTimer, APP_TIMER_MODE_SINGLE_SHOT, StopMotor);
app_timer_create(&longVibTimer, APP_TIMER_MODE_REPEATED, Ring);
2021-01-16 03:11:53 +00:00
}
2021-08-01 10:05:48 +00:00
void MotorController::Ring(void* p_context) {
auto* motorController = static_cast<MotorController*>(p_context);
motorController->RunForDuration(50);
}
2021-08-01 10:05:48 +00:00
void MotorController::RunForDuration(uint8_t motorDuration) {
2021-08-03 18:32:23 +00:00
nrf_gpio_pin_clear(PinMap::Motor);
2021-08-01 10:05:48 +00:00
app_timer_start(shortVibTimer, APP_TIMER_TICKS(motorDuration), nullptr);
2021-01-25 17:44:58 +00:00
}
2021-02-05 16:06:56 +00:00
2021-08-01 10:05:48 +00:00
void MotorController::StartRinging() {
Ring(this);
app_timer_start(longVibTimer, APP_TIMER_TICKS(1000), this);
}
2021-08-01 10:05:48 +00:00
void MotorController::StopRinging() {
app_timer_stop(longVibTimer);
2021-08-03 18:32:23 +00:00
nrf_gpio_pin_set(PinMap::Motor);
}
2021-08-01 10:05:48 +00:00
void MotorController::StopMotor(void* p_context) {
2021-08-22 20:11:57 +00:00
nrf_gpio_pin_set(PinMap::Motor);
2021-08-01 08:47:26 +00:00
}