Skip to content

Commit

Permalink
force DSG ST_MIN_TX based on advice from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bri3d committed Dec 14, 2024
1 parent ec77140 commit 3387ac3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ def internal_path(*path_parts) -> str:
b"\x04": b"\x04",
}

BLE_SERVICE_IDENTIFIER = "0000abf0-0000-1000-8000-00805f9b34fb"
DSG_STMIN = 900000
2 changes: 1 addition & 1 deletion lib/dq381_flash_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,6 @@ def flash_bin(
interface=interface,
interface_path=interface_path,
workshop_code=workshop_code.as_bytes(),
stmin_override=900000,
stmin_override=constants.DSG_STMIN,
dq3xx_hack=True,
)
2 changes: 1 addition & 1 deletion lib/dsg_flash_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,5 +223,5 @@ def flash_bin(
callback=callback,
interface=interface,
interface_path=interface_path,
stmin_override=stmin_override,
stmin_override=constants.DSG_STMIN,
)

0 comments on commit 3387ac3

Please sign in to comment.