53 lines
2.6 KiB
C++
53 lines
2.6 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2025 The LineageOS Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <aidl/android/hardware/vibrator/BnVibrator.h>
|
|
|
|
namespace aidl {
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace vibrator {
|
|
|
|
class Vibrator : public BnVibrator {
|
|
public:
|
|
Vibrator();
|
|
|
|
ndk::ScopedAStatus getCapabilities(int32_t* _aidl_return) override;
|
|
ndk::ScopedAStatus off() override;
|
|
ndk::ScopedAStatus on(int32_t timeoutMs,
|
|
const std::shared_ptr<IVibratorCallback>& callback) override;
|
|
ndk::ScopedAStatus perform(Effect effect, EffectStrength strength,
|
|
const std::shared_ptr<IVibratorCallback>& callback,
|
|
int32_t* _aidl_return) override;
|
|
ndk::ScopedAStatus getSupportedEffects(std::vector<Effect>* _aidl_return) override;
|
|
ndk::ScopedAStatus setAmplitude(float amplitude) override;
|
|
ndk::ScopedAStatus setExternalControl(bool enabled) override;
|
|
ndk::ScopedAStatus getCompositionDelayMax(int32_t* maxDelayMs);
|
|
ndk::ScopedAStatus getCompositionSizeMax(int32_t* maxSize);
|
|
ndk::ScopedAStatus getSupportedPrimitives(std::vector<CompositePrimitive>* supported) override;
|
|
ndk::ScopedAStatus getPrimitiveDuration(CompositePrimitive primitive,
|
|
int32_t* durationMs) override;
|
|
ndk::ScopedAStatus compose(const std::vector<CompositeEffect>& composite,
|
|
const std::shared_ptr<IVibratorCallback>& callback) override;
|
|
ndk::ScopedAStatus getSupportedAlwaysOnEffects(std::vector<Effect>* _aidl_return) override;
|
|
ndk::ScopedAStatus alwaysOnEnable(int32_t id, Effect effect, EffectStrength strength) override;
|
|
ndk::ScopedAStatus alwaysOnDisable(int32_t id) override;
|
|
ndk::ScopedAStatus getResonantFrequency(float* resonantFreqHz) override;
|
|
ndk::ScopedAStatus getQFactor(float* qFactor) override;
|
|
ndk::ScopedAStatus getFrequencyResolution(float* freqResolutionHz) override;
|
|
ndk::ScopedAStatus getFrequencyMinimum(float* freqMinimumHz) override;
|
|
ndk::ScopedAStatus getBandwidthAmplitudeMap(std::vector<float>* _aidl_return) override;
|
|
ndk::ScopedAStatus getPwlePrimitiveDurationMax(int32_t* durationMs) override;
|
|
ndk::ScopedAStatus getPwleCompositionSizeMax(int32_t* maxSize) override;
|
|
ndk::ScopedAStatus getSupportedBraking(std::vector<Braking>* supported) override;
|
|
ndk::ScopedAStatus composePwle(const std::vector<PrimitivePwle>& composite,
|
|
const std::shared_ptr<IVibratorCallback>& callback) override;
|
|
};
|
|
|
|
} // namespace vibrator
|
|
} // namespace hardware
|
|
} // namespace android
|
|
} // namespace aidl
|