Skip to content

Commit 337680b

Browse files
committed
proto: Extend CoolingManualMode with target_temperature
1 parent 2cd6fb5 commit 337680b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Introduced new field `max_fan_speed` in the `braiins.bos.v1.CoolingAutoMode` to set maximum fan speed for automatic cooling mode.
1010
* Introduced new field `min_fan_speed` in the `braiins.bos.v1.CoolingConstraints` to get default value for minimum fan speed for automatic cooling mode.
1111
* Introduced new field `max_fan_speed` in the `braiins.bos.v1.CoolingConstraints` to get default value for maximum fan speed for automatic cooling mode.
12+
* Introduced new field `target_temperature` in the `braiins.bos.v1.CoolingManualMode` to set target temperature for manual cooling mode.
1213

1314
### Changed
1415
* Extend `CoolingConfiguration` mode with new value `immersion` that represents immersion cooling mode.

proto/bos/v1/cooling.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ message CoolingManualMode {
5858
braiins.bos.v1.Temperature hot_temperature = 2;
5959
// Temperature threshold at which BOSMiner shuts down in order to prevent overheating and damaging the miner.
6060
braiins.bos.v1.Temperature dangerous_temperature = 3;
61+
// Temperature that the miner will try to maintain when power scaling is enabled
62+
braiins.bos.v1.Temperature target_temperature = 4;
6163
// Minimum number of fans required to have BOSminer operational.
6264
optional uint32 minimum_required_fans = 5;
6365
}

0 commit comments

Comments
 (0)