mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-19 20:45:18 -05:00
Given a typical setup of a battery at ~4 V and a nice!nano v2 running at 3.3 V, I measured a small increase in power usage (using a Nordic PPK2) when SOC_DCDC_NRF52X_HV was enabled. This changes the nice_nano_v2 and mikoto boards so this option is disabled by default. Fixes #2990
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
# SPDX-License-Identifier: MIT
|
|
|
|
config BOARD_ENABLE_DCDC
|
|
bool "Enable DCDC mode"
|
|
select SOC_DCDC_NRF52X
|
|
default y
|
|
depends on (BOARD_NICE_NANO || BOARD_NICE_NANO_V2)
|
|
|
|
config BOARD_ENABLE_DCDC_HV
|
|
bool "High voltage DCDC converter"
|
|
select SOC_DCDC_NRF52X_HV
|
|
default n
|
|
depends on (BOARD_NICE_NANO_V2)
|