f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
16 lines
310 B
Python
Executable File
16 lines
310 B
Python
Executable File
#!/usr/bin/env python3
|
|
from openpilot.system.ui.lib.application import gui_app
|
|
import openpilot.system.ui.tici_reset as tici_reset
|
|
import openpilot.system.ui.mici_reset as mici_reset
|
|
|
|
|
|
def main():
|
|
if gui_app.big_ui():
|
|
tici_reset.main()
|
|
else:
|
|
mici_reset.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|