MotionController: Remove IsOk variable

We should be able to assume MotionController is safe to use.
This commit is contained in:
Riku Isokoski
2023-04-05 21:50:38 +03:00
parent 348d3de60b
commit 4d93ae6d27
2 changed files with 0 additions and 10 deletions

View File

@@ -50,14 +50,6 @@ namespace Pinetime {
return accumulatedSpeed;
}
void IsSensorOk(bool isOk) {
isSensorOk = isOk;
}
bool IsSensorOk() const {
return isSensorOk;
}
DeviceTypes DeviceType() const {
return deviceType;
}
@@ -83,7 +75,6 @@ namespace Pinetime {
int16_t z = 0;
int32_t accumulatedSpeed = 0;
bool isSensorOk = false;
DeviceTypes deviceType = DeviceTypes::Unknown;
Pinetime::Controllers::MotionService* service = nullptr;
};