fix(boards): Disable high voltage DC-DC by default (#2995)

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
This commit is contained in:
Joel Spadin 2025-07-21 10:14:29 -05:00 committed by GitHub
parent 61325ee82c
commit 8059e671b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ config BOARD_ENABLE_DCDC
config BOARD_ENABLE_DCDC_HV
bool "High voltage DCDC converter"
select SOC_DCDC_NRF52X_HV
default y
default n
depends on (BOARD_MIKOTO)
choice BOARD_MIKOTO_CHARGER_CURRENT

View File

@ -9,5 +9,5 @@ config BOARD_ENABLE_DCDC
config BOARD_ENABLE_DCDC_HV
bool "High voltage DCDC converter"
select SOC_DCDC_NRF52X_HV
default y
default n
depends on (BOARD_NICE_NANO_V2)