Merge pull request #9107 from german77/gidoly_rules

input_common: cache vibration tests
This commit is contained in:
liamwhite
2022-10-25 12:13:18 -04:00
committed by GitHub
10 changed files with 93 additions and 57 deletions

View File

@ -100,7 +100,6 @@ enum class CameraError {
enum class VibrationAmplificationType {
Linear,
Exponential,
Test,
};
// Analog properties for calibration
@ -325,6 +324,10 @@ public:
return VibrationError::NotSupported;
}
virtual bool IsVibrationEnabled() {
return false;
}
virtual PollingError SetPollingMode([[maybe_unused]] PollingMode polling_mode) {
return PollingError::NotSupported;
}