Added power supply optional property for the power profiler
This commit is contained in:
parent
c9c1a129a7
commit
629742460d
1 changed files with 16 additions and 0 deletions
|
@ -142,6 +142,22 @@ The `outputs` array tracks the type of outputs that a keyboard can have. It incl
|
|||
|
||||
The optional `arch` property describes the architecture that the MCU of a board uses.
|
||||
|
||||
### Power
|
||||
|
||||
The optional `power_supply` property is used to describe the power consumption characteristics of the board, for use with [ZMK's power profiler]. It has the following children:
|
||||
- `psu_type` is set to either `LDO` or `SWITCHING`
|
||||
- `psu_output_voltage` is set to the output voltage of the power supply (in mV)
|
||||
- `psu_quiescent` is set to the quiescent of the power supply (in uA)
|
||||
- `misc_quiescent` is any other quiescent present on the board (in uA)
|
||||
|
||||
```yaml
|
||||
power_supply:
|
||||
psu_type: LDO
|
||||
psu_output_voltage: 3.3
|
||||
psu_quiescent: 55
|
||||
misc_quiescent: 4
|
||||
```
|
||||
|
||||
:::note
|
||||
The following metadata properties are generally used for boards which are also keyboards. MCU-only boards usually do not make use of the below properties.
|
||||
:::
|
||||
|
|
Loading…
Add table
Reference in a new issue