mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Added `tt::hal::Device` and functions (de)register devices and search for them. - Refactored apps: `Power` and `Display` settings apps now use the device API to find devices. - Implemented the new API for all existing drivers for all devices, including the simulator. - Updated HAL Configuration to return `std::shared_ptr` instead of raw pointers. - Added test project for headless tests and implemented tests for the new code.
40 lines
912 B
C++
40 lines
912 B
C++
#pragma once
|
|
|
|
#include <Tactility/hal/i2c/I2cDevice.h>
|
|
|
|
#define BQ24295_ADDRESS 0x6BU
|
|
|
|
class Bq24295 final : public tt::hal::i2c::I2cDevice {
|
|
|
|
private:
|
|
|
|
bool readChargeTermination(uint8_t& out) const;
|
|
|
|
public:
|
|
|
|
std::string getName() const final { return "BQ24295"; }
|
|
|
|
std::string getDescription() const final { return "I2C-controlled single cell USB charger"; }
|
|
|
|
enum class WatchDogTimer {
|
|
Disabled = 0b000000,
|
|
Enabled40s = 0b010000,
|
|
Enabled80s = 0b100000,
|
|
Enabled160s = 0b110000
|
|
};
|
|
|
|
explicit Bq24295(i2c_port_t port) : I2cDevice(port, BQ24295_ADDRESS) {}
|
|
|
|
bool getWatchDogTimer(WatchDogTimer& out) const;
|
|
bool setWatchDogTimer(WatchDogTimer in) const;
|
|
|
|
bool isUsbPowerConnected() const;
|
|
|
|
bool setBatFetOn(bool on) const;
|
|
|
|
bool getStatus(uint8_t& value) const;
|
|
bool getVersion(uint8_t& value) const;
|
|
|
|
void printInfo() const;
|
|
};
|