2022-02-16 20:42:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2023-03-05 19:51:34 +00:00
|
|
|
|
|
|
|
//#include <FreeRTOS.h>
|
|
|
|
|
|
|
|
#include "drivers/Bma421.h"
|
|
|
|
//#include "components/ble/MotionService.h"
|
2023-08-20 16:29:41 +00:00
|
|
|
#include "utility/CircularBuffer.h"
|
2022-02-16 20:42:29 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class MotionController {
|
|
|
|
public:
|
2023-08-20 16:29:41 +00:00
|
|
|
enum class DeviceTypes {
|
2022-02-16 20:42:29 +00:00
|
|
|
Unknown,
|
|
|
|
BMA421,
|
|
|
|
BMA425,
|
|
|
|
};
|
|
|
|
|
|
|
|
void Update(int16_t x, int16_t y, int16_t z, uint32_t nbSteps);
|
|
|
|
|
|
|
|
int16_t X() const {
|
|
|
|
return x;
|
|
|
|
}
|
2023-03-05 19:51:34 +00:00
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
int16_t Y() const {
|
2023-08-20 16:29:41 +00:00
|
|
|
return yHistory[0];
|
2022-02-16 20:42:29 +00:00
|
|
|
}
|
2023-03-05 19:51:34 +00:00
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
int16_t Z() const {
|
2023-08-20 16:29:41 +00:00
|
|
|
return zHistory[0];
|
2022-02-16 20:42:29 +00:00
|
|
|
}
|
2023-03-05 19:51:34 +00:00
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
uint32_t NbSteps() const {
|
|
|
|
return nbSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResetTrip() {
|
|
|
|
currentTripSteps = 0;
|
|
|
|
}
|
2023-03-05 19:51:34 +00:00
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
uint32_t GetTripSteps() const {
|
|
|
|
return currentTripSteps;
|
|
|
|
}
|
|
|
|
|
2023-03-05 19:51:34 +00:00
|
|
|
bool ShouldShakeWake(uint16_t thresh);
|
2023-08-20 16:29:41 +00:00
|
|
|
bool ShouldRaiseWake() const;
|
2023-08-30 09:48:23 +00:00
|
|
|
bool ShouldLowerSleep() const;
|
2023-03-05 19:51:34 +00:00
|
|
|
|
|
|
|
int32_t CurrentShakeSpeed() const {
|
|
|
|
return accumulatedSpeed;
|
|
|
|
}
|
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
DeviceTypes DeviceType() const {
|
|
|
|
return deviceType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Init(Pinetime::Drivers::Bma421::DeviceTypes types);
|
2023-03-05 19:51:34 +00:00
|
|
|
|
|
|
|
// void SetService(Pinetime::Controllers::MotionService* service) {
|
|
|
|
// this->service = service;
|
|
|
|
// }
|
2022-02-16 20:42:29 +00:00
|
|
|
|
|
|
|
private:
|
2023-03-05 19:51:34 +00:00
|
|
|
uint32_t nbSteps = 0;
|
2022-02-16 20:42:29 +00:00
|
|
|
uint32_t currentTripSteps = 0;
|
2023-03-05 19:51:34 +00:00
|
|
|
|
|
|
|
// TickType_t lastTime = 0;
|
|
|
|
// TickType_t time = 0;
|
|
|
|
|
2023-08-20 16:29:41 +00:00
|
|
|
struct AccelStats {
|
|
|
|
static constexpr uint8_t numHistory = 2;
|
|
|
|
|
|
|
|
int16_t yMean = 0;
|
|
|
|
int16_t zMean = 0;
|
|
|
|
int16_t prevYMean = 0;
|
|
|
|
int16_t prevZMean = 0;
|
|
|
|
|
|
|
|
uint32_t yVariance = 0;
|
|
|
|
uint32_t zVariance = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
AccelStats GetAccelStats() const;
|
|
|
|
|
|
|
|
AccelStats stats = {};
|
|
|
|
|
|
|
|
int16_t lastX = 0;
|
2023-03-05 19:51:34 +00:00
|
|
|
int16_t x = 0;
|
2023-08-20 16:29:41 +00:00
|
|
|
static constexpr uint8_t histSize = 8;
|
|
|
|
Utility::CircularBuffer<int16_t, histSize> yHistory = {};
|
|
|
|
Utility::CircularBuffer<int16_t, histSize> zHistory = {};
|
2023-03-05 19:51:34 +00:00
|
|
|
int32_t accumulatedSpeed = 0;
|
|
|
|
|
2022-02-16 20:42:29 +00:00
|
|
|
DeviceTypes deviceType = DeviceTypes::Unknown;
|
|
|
|
// Pinetime::Controllers::MotionService* service = nullptr;
|
|
|
|
};
|
|
|
|
}
|
2023-03-05 19:51:34 +00:00
|
|
|
}
|