mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Merge "Added dummy Lights to the Light HAL default implementation"
This commit is contained in:
@@ -23,12 +23,21 @@ namespace android {
|
|||||||
namespace hardware {
|
namespace hardware {
|
||||||
namespace light {
|
namespace light {
|
||||||
|
|
||||||
|
static constexpr int kNumDefaultLights = 3;
|
||||||
|
|
||||||
ndk::ScopedAStatus Lights::setLightState(int id, const HwLightState& state) {
|
ndk::ScopedAStatus Lights::setLightState(int id, const HwLightState& state) {
|
||||||
LOG(INFO) << "Lights setting state for id=" << id << " to color " << std::hex << state.color;
|
LOG(INFO) << "Lights setting state for id=" << id << " to color " << std::hex << state.color;
|
||||||
return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION);
|
if (id <= 0 || id > kNumDefaultLights) {
|
||||||
|
return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION);
|
||||||
|
} else {
|
||||||
|
return ndk::ScopedAStatus::ok();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ndk::ScopedAStatus Lights::getLights(std::vector<HwLight>* /*lights*/) {
|
ndk::ScopedAStatus Lights::getLights(std::vector<HwLight>* lights) {
|
||||||
|
for (int i = 1; i <= kNumDefaultLights; i++) {
|
||||||
|
lights->push_back({i, i});
|
||||||
|
}
|
||||||
LOG(INFO) << "Lights reporting supported lights";
|
LOG(INFO) << "Lights reporting supported lights";
|
||||||
return ndk::ScopedAStatus::ok();
|
return ndk::ScopedAStatus::ok();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user