|
2 | 2 |
|
3 | 3 | ## Check firmware versions
|
4 | 4 |
|
| 5 | +### BIOS (Mainboard, UEFI, EC, PD) |
| 6 | + |
| 7 | +Example on Framework 13 AMD Ryzen AI 300 Series: |
| 8 | + |
| 9 | +``` |
| 10 | +> framework_tool --versions |
| 11 | +Mainboard Hardware |
| 12 | + Type: Laptop 13 (AMD Ryzen AI 300 Series) |
| 13 | + Revision: MassProduction |
| 14 | +UEFI BIOS |
| 15 | + Version: 03.00 |
| 16 | + Release Date: 03/10/2025 |
| 17 | +EC Firmware |
| 18 | + Build version: "lilac-3.0.0-1541dc6 2025-05-05 11:31:24 zoid@localhost" |
| 19 | + RO Version: "lilac-3.0.0-1541dc6" |
| 20 | + RW Version: "lilac-3.0.0-1541dc6" |
| 21 | + Current image: RO |
| 22 | +PD Controllers |
| 23 | + Right (01) |
| 24 | + Main: 0.0.0E (Active) |
| 25 | + Backup: 0.0.0E |
| 26 | + Left (23) |
| 27 | + Main: 0.0.0E (Active) |
| 28 | + Backup: 0.0.0E |
| 29 | +[...] |
| 30 | +``` |
| 31 | + |
5 | 32 | ### Camera (Framework 12, Framework 13, Framework 16)
|
6 | 33 |
|
7 | 34 | Example on Framework 12:
|
@@ -128,21 +155,33 @@ Positions:
|
128 | 155 | ## Check temperatures and fan speed
|
129 | 156 |
|
130 | 157 | ```
|
131 |
| -> sudo ./target/debug/framework_tool --thermal |
| 158 | +> sudo framework_tool --thermal |
132 | 159 | F75303_Local: 43 C
|
133 | 160 | F75303_CPU: 44 C
|
134 | 161 | F75303_DDR: 39 C
|
135 | 162 | APU: 62 C
|
136 | 163 | Fan Speed: 0 RPM
|
137 | 164 | ```
|
138 | 165 |
|
139 |
| -## Check sensors (ALS and G-Sensor) |
| 166 | +## Check sensors |
| 167 | + |
| 168 | +### Ambient Light (Framework 13, Framework 16) |
140 | 169 |
|
141 | 170 | ```
|
142 |
| -> sudo ./target/debug/framework_tool --sensors |
| 171 | +> sudo framework_tool --sensors |
143 | 172 | ALS: 76 Lux
|
144 | 173 | ```
|
145 | 174 |
|
| 175 | +### Accelerometer (Framework 12) |
| 176 | +``` |
| 177 | +> sudo framework_tool --sensors |
| 178 | +ALS: 0 Lux |
| 179 | +Accelerometers: |
| 180 | + Lid Angle: 122 Deg |
| 181 | + Sensor 1: X=+0.00G Y=+0.84G, Z=+0.52G |
| 182 | + Sensor 2: X=-0.03G Y=+0.00G, Z=+1.01G |
| 183 | +``` |
| 184 | + |
146 | 185 | ## Set custom fan duty/RPM
|
147 | 186 |
|
148 | 187 | ```
|
@@ -296,6 +335,45 @@ Battery Status
|
296 | 335 | > sudo framework_tool --charge-current-limit 2000 80
|
297 | 336 | ```
|
298 | 337 |
|
| 338 | +## EC Console |
| 339 | + |
| 340 | +``` |
| 341 | +# Get recent EC console logs and watch for more |
| 342 | +> framework_tool.exe --console follow |
| 343 | +[53694.741000 Battery 62% (Display 61.1 %) / 3h:18 to empty] |
| 344 | +[53715.010000 Battery 62% (Display 61.0 %) / 3h:21 to empty] |
| 345 | +[53734.281200 Battery 62% (Display 60.9 %) / 3h:18 to empty] |
| 346 | +[53738.037200 Battery 61% (Display 60.9 %) / 3h:6 to empty] |
| 347 | +[53752.301500 Battery 61% (Display 60.8 %) / 3h:15 to empty] |
| 348 | +``` |
| 349 | + |
| 350 | +## Keyboard backlight |
| 351 | + |
| 352 | +``` |
| 353 | +# Check current keyboard backlight brightness |
| 354 | +> framework_tool.exe --kblight |
| 355 | +Keyboard backlight: 5% |
| 356 | +
|
| 357 | +# Set keyboard backlight brightness |
| 358 | +# Off |
| 359 | +> framework_tool.exe --kblight 0 |
| 360 | +# 20% |
| 361 | +> framework_tool.exe --kblight 20 |
| 362 | +``` |
| 363 | + |
| 364 | +## RGB LED (Framework Desktop) |
| 365 | + |
| 366 | +``` |
| 367 | +# To set three LEDs to red, green, blue |
| 368 | +sudo framework_tool --rgbkbd 0 0xFF0000 0x00FF00 0x0000FF |
| 369 | +
|
| 370 | +# To clear 8 LEDs |
| 371 | +sudo framework_tool --rgbkbd 0 0 0 0 0 0 0 0 0 |
| 372 | +
|
| 373 | +# Just turn the 3rd LED red |
| 374 | +sudo framework_tool --rgbkbd 2 0xFF0000 |
| 375 | +``` |
| 376 | + |
299 | 377 | ## Stylus (Framework 12)
|
300 | 378 |
|
301 | 379 | ```
|
|
0 commit comments