You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@
4
4
### Added
5
5
* Added `on_start_target_percent` field in the `braiins.bos.v1.DPSConfiguration`, `braiins.bos.v1.DPSConstraints`, `braiins.bos.v1.SetDPSRequest`, `braiins.bos.v1.SetDPSResponse`. This change allows to specify the target that the Dynamic Performance Scaling starts from.
6
6
* Introduced new `braiins.bos.v1.ActionsService::FactoryReset()` method to perform factory reset.
7
+
* Introduced new enumeration `braiins.bos.v1.FanPauseRuntime` with `FAN_PAUSE_RUNTIME_LIMITED` and `FAN_PAUSE_RUNTIME_INDEFINITE` variants.
8
+
* Introduced new field `fan_pause_runtime` in the `braiins.bos.v1.ManualPauseMode` message to configure fan runtime duration in manual pause mode.
9
+
* Introduced new field `default_fan_pause_runtime` in the `braiins.bos.v1.CoolingConstraints` message to get default fan pause runtime.
10
+
* Introduced new field `fan_pause_runtime_limited_duration_s` in the `braiins.bos.v1.CoolingConstraints` message to get fan pause runtime limited duration.
7
11
8
12
## [1.8.0] - 2025-11-25
9
13
Version **1.8.0** introduces new Upgrade service `braiins.bos.v1.UpgradeService` and relative power/hashrate target configuration.
Copy file name to clipboardExpand all lines: proto/bos/v1/cooling.proto
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,19 @@ message PauseMode {
41
41
// Automatic pause mode starts with fans going with last fan speed used for mining and slowly decreases speed down to 0%
42
42
messageAutoPauseMode {}
43
43
44
-
// Manual pause mode runs with defined fixed fans speed for 2 minutes, then turns off
44
+
// Manual pause mode runs with defined fixed fans speed and either turns off after a certain period of time
45
+
// or runs indefinitely according to fan_runtime settings
45
46
messageManualPauseMode {
46
47
// User defined pause cooldown fan speed expressed as a ratio between 0.0 and 1.0
47
48
// where 0.0 means completely turned off and
48
49
// 1.0 means running at full speed possible
49
50
// Value is not optional for request! Unset value will result in error.
50
51
// Value is optional for response! It is possible to set manual pause mode without pause cooldown fan speed, but not using the API.
51
52
optionaldoublepause_cooldown_fan_speed_ratio=1;
53
+
// Controls how long fans run at the fixed speed before turning off.<br>
54
+
// 1 = FAN_PAUSE_RUNTIME_LIMITED - fans run for a limited duration (see `fan_pause_runtime_limited_duration_s` in `CoolingConstraints`) then turn off<br>
55
+
// 2 = FAN_PAUSE_RUNTIME_INDEFINITE - fans run indefinitely at the fixed speed until miner is resumed
0 commit comments