fix: SLEEP_TIMEOUT enum mismatch (#2137)

## Summary

* **What is the goal of this PR?** fixes #2132.

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? _**< NO >**_
This commit is contained in:
Uri Tauber
2026-05-25 09:51:52 -05:00
committed by GitHub
parent 88b10c82a3
commit 38210be820
2 changed files with 7 additions and 6 deletions
+2 -1
View File
@@ -312,12 +312,13 @@ unsigned long CrossPointSettings::getSleepTimeoutMs() const {
case SLEEP_5_MIN:
return 5UL * 60 * 1000;
case SLEEP_10_MIN:
default:
return 10UL * 60 * 1000;
case SLEEP_15_MIN:
return 15UL * 60 * 1000;
case SLEEP_30_MIN:
return 30UL * 60 * 1000;
default:
return 10UL * 60 * 1000;
}
}