56 lines
1.5 KiB
C
56 lines
1.5 KiB
C
|
#pragma once
|
||
|
#include <drivers/Bma421_C/bma4_defs.h>
|
||
|
#include <cstdint>
|
||
|
#include <cstddef>
|
||
|
#include <memory>
|
||
|
|
||
|
namespace Pinetime {
|
||
|
namespace Drivers {
|
||
|
class TwiMaster;
|
||
|
class Bma421 {
|
||
|
public:
|
||
|
enum class DeviceTypes : uint8_t {
|
||
|
Unknown,
|
||
|
BMA421,
|
||
|
BMA425
|
||
|
};
|
||
|
struct Values {
|
||
|
uint32_t steps;
|
||
|
int16_t x;
|
||
|
int16_t y;
|
||
|
int16_t z;
|
||
|
};
|
||
|
Bma421(TwiMaster& twiMaster, uint8_t twiAddress);
|
||
|
Bma421(const Bma421&) = delete;
|
||
|
Bma421& operator=(const Bma421&) = delete;
|
||
|
Bma421(Bma421&&) = delete;
|
||
|
Bma421& operator=(Bma421&&) = delete;
|
||
|
|
||
|
/// The chip freezes the TWI bus after the softreset operation. Softreset is separated from the
|
||
|
/// Init() method to allow the caller to uninit and then reinit the TWI device after the softreset.
|
||
|
void SoftReset();
|
||
|
void Init();
|
||
|
Values Process();
|
||
|
void ResetStepCounter();
|
||
|
|
||
|
void Read(uint8_t registerAddress, uint8_t* buffer, size_t size);
|
||
|
void Write(uint8_t registerAddress, const uint8_t* data, size_t size);
|
||
|
|
||
|
bool IsOk() const;
|
||
|
DeviceTypes DeviceType() const;
|
||
|
|
||
|
// lv_sim: returned by Process(), public to be modified by main.cpp
|
||
|
uint32_t steps = 0;
|
||
|
|
||
|
private:
|
||
|
void Reset();
|
||
|
|
||
|
TwiMaster& twiMaster;
|
||
|
uint8_t deviceAddress = 0x18;
|
||
|
bma4_dev bma;
|
||
|
bool isOk = true;
|
||
|
bool isResetOk = false;
|
||
|
DeviceTypes deviceType = DeviceTypes::Unknown;
|
||
|
};
|
||
|
}
|
||
|
}
|