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.
29 lines
784 B
C++
29 lines
784 B
C++
#pragma once
|
|
|
|
#include <Tactility/hal/Power.h>
|
|
#include <memory>
|
|
|
|
using namespace tt::hal;
|
|
|
|
class SimulatorPower final : public Power {
|
|
|
|
bool allowedToCharge = false;
|
|
|
|
public:
|
|
|
|
SimulatorPower() = default;
|
|
~SimulatorPower() override = default;
|
|
|
|
std::string getName() const final { return "Power Mock"; }
|
|
std::string getDescription() const final { return ""; }
|
|
|
|
bool supportsMetric(MetricType type) const override;
|
|
bool getMetric(Power::MetricType type, Power::MetricData& data) override;
|
|
|
|
bool supportsChargeControl() const override { return true; }
|
|
bool isAllowedToCharge() const override { return allowedToCharge; }
|
|
void setAllowedToCharge(bool canCharge) override { allowedToCharge = canCharge; }
|
|
};
|
|
|
|
std::shared_ptr<Power> simulatorPower();
|