* Use FreeRTOS timer for AlarmController * Use FreeRTOS timer for MotorController * Remove app_timer component from compilation as we now solely use FreeROTS timer * Simplify variable and text names for AlarmController and MotorController timers * Call ScheduleAlarm directly from StopAlerting, for recurring timers Co-authored-by: Riku Isokoski <riksu9000@gmail.com> Co-authored-by: NeroBurner <pyro4hell@gmail.com>
26 lines
505 B
C++
26 lines
505 B
C++
#pragma once
|
|
|
|
#include <FreeRTOS.h>
|
|
#include <timers.h>
|
|
#include <cstdint>
|
|
|
|
namespace Pinetime {
|
|
namespace Controllers {
|
|
|
|
class MotorController {
|
|
public:
|
|
MotorController() = default;
|
|
|
|
void Init();
|
|
void RunForDuration(uint8_t motorDuration);
|
|
void StartRinging();
|
|
void StopRinging();
|
|
|
|
private:
|
|
static void Ring(TimerHandle_t xTimer);
|
|
static void StopMotor(TimerHandle_t xTimer);
|
|
TimerHandle_t shortVib;
|
|
TimerHandle_t longVib;
|
|
};
|
|
}
|
|
}
|