script to disable power save

old-commit-hash: d0060a9d9b56069eb53613f73abe6cfc6db33c12
This commit is contained in:
Adeeb Shihadeh
2022-02-09 13:39:17 -08:00
parent 30a0b40b5d
commit a6ed18a4f9

5
scripts/disable-powersave.py Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python3
from selfdrive.hardware import HARDWARE
if __name__ == "__main__":
HARDWARE.set_power_save(False)