Remove hard coded !isPowered

This commit is contained in:
Ben Meadors 2022-12-05 10:13:19 -06:00
parent 2a84d39e40
commit 0f2a835359

View File

@ -27,7 +27,7 @@ static bool isPowered()
2) If we detect USB power from the power management chip, we must be getting power externally. 2) If we detect USB power from the power management chip, we must be getting power externally.
*/ */
return false;//!isPowerSavingMode && powerStatus && (!powerStatus->getHasBattery() || powerStatus->getHasUSB()); return !isPowerSavingMode && powerStatus && (!powerStatus->getHasBattery() || powerStatus->getHasUSB());
} }
static void sdsEnter() static void sdsEnter()