@@ -14,7 +14,7 @@ namespace Pinetime {
1414 enum class Notification : uint8_t { On, Off, Sleep };
1515 enum class ChimesOption : uint8_t { None, Hours, HalfHours };
1616 enum class WakeUpMode : uint8_t { SingleTap = 0 , DoubleTap = 1 , RaiseWrist = 2 , Shake = 3 , LowerWrist = 4 };
17- enum class SleepOption : uint8_t { AllowChimes = 0 , AllowNotify = 1 , EnableAOD = 2 , DisableBle = 3 };
17+ enum class SleepOption : uint8_t { AllowChimes = 0 , AllowNotify = 1 , EnableAOD = 2 , DisableBle = 3 , IgnoreSteps = 4 };
1818 enum class Colors : uint8_t {
1919 White,
2020 Silver,
@@ -293,7 +293,7 @@ namespace Pinetime {
293293 }
294294 };
295295
296- std::bitset<4 > getSleepOptions () const {
296+ std::bitset<5 > getSleepOptions () const {
297297 return settings.sleepOption ;
298298 }
299299
@@ -357,7 +357,7 @@ namespace Pinetime {
357357 std::bitset<5 > wakeUpMode {0 };
358358 uint16_t shakeWakeThreshold = 150 ;
359359
360- std::bitset<4 > sleepOption {0 };
360+ std::bitset<5 > sleepOption {0 };
361361
362362 Controllers::BrightnessController::Levels brightLevel = Controllers::BrightnessController::Levels::Medium;
363363 };
0 commit comments