Skip to content

Commit

Permalink
README: Add fan profile and power mode info to docs
Browse files Browse the repository at this point in the history
This commit adds detailed information for the
new power and cooling configuration options
available for Jetson Orin devices.

Signed-off-by: Alexandru Costache <[email protected]>
Change-type: patch
  • Loading branch information
acostach committed Nov 11, 2024
1 parent 767da5e commit 23444fa
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,41 @@ The following example contains two custom udev rules that will create `/etc/udev
}
```

#### fan

An object that defines thermal related configuration. Available for Jetson Orin devices running Jetpack 6 or newer and Supervisor vTODO or newer.

##### fan.profile

(string) A string which will be used to select the desired cooling profile. Supported values are "quiet" and "cool". At runtime, this
configuration option should be set through the API or from your balenaCloud dashboard.

```json
"os": {
"fan": {
"profile":"cool"
}
}
```

#### power

An object that defines power consumption related configuration. Available for Jetson Orin devices running Jetpack 6 or newer and Supervisor vTODO or newer.

##### power.mode

(string) A string which will be used to select the desired power mode. Supported values for Jetpack 6 and newer are "low", "mid" and "high", where "low"
is the lowest power consumption mode while "high" corresponds to MAXN or the highest available power mode for your device type. At runtime, this
configuration option should be set through the API or from your balenaCloud dashboard, and it will cause a device reboot.

```json
"os": {
"power": {
"mode":"high"
}
}
```

### installer

An object that configures the behaviour of the balenaOS installer image.
Expand Down

0 comments on commit 23444fa

Please sign in to comment.