Compare commits

..

5 Commits

Author SHA1 Message Date
Jason Wen
5ba3d8ea92 branch: migrate TIZI to release-tizi 2025-10-25 15:20:44 -04:00
Jason Wen
9614e5b54d Revert "H7: detect board type with second ID pin group" (#730) 2025-03-30 09:50:22 -04:00
Jason Wen
85d3e23aa6 Revert "Revert "H7: detect board type with second ID pin group"" (#729)
Revert "Revert "H7: detect board type with second ID pin group" (#727)"

This reverts commit f95c4896ef.
2025-03-30 08:51:01 -04:00
Jason Wen
f95c4896ef Revert "H7: detect board type with second ID pin group" (#727) 2025-03-29 21:51:14 -04:00
DevTekVE
178ee26a0e Hotfix to avoid infinite loop waiting for comma registration after downgrade 2025-03-18 18:11:43 +01:00
6 changed files with 4 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -85,6 +85,7 @@ def register(show_spinner=False) -> str | None:
if time.monotonic() - start_time > 60 and show_spinner:
spinner.update(f"registering device - serial: {serial}, IMEI: ({imei1}, {imei2})")
return UNREGISTERED_DONGLE_ID # hotfix to prevent an infinite wait for registration
if show_spinner:
spinner.close()

View File

@@ -245,6 +245,9 @@ class Updater:
b: str | None = self.params.get("UpdaterTargetBranch", encoding='utf-8')
if b is None:
b = self.get_branch(BASEDIR)
b = {
("tizi", "release-c3"): "release-tizi",
}.get((HARDWARE.get_device_type(), b), b)
return b
@property