Skip to content

Commit 82f7f52

Browse files
committed
Starting to add some basic runtime power management
1 parent ff28931 commit 82f7f52

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

variants/preonic/variant.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,14 @@ const uint32_t g_ADigitalPinMap[] =
6565

6666
void initVariant()
6767
{
68-
// LED1 & LED2
69-
// pinMode(PIN_LED1, OUTPUT);
70-
// ledOff(PIN_LED1);
68+
// Enable DC/DC converter for better power efficiency
69+
sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);
70+
71+
// Disable debug interface if not actively debugging
72+
NRF_CLOCK->TRACECONFIG = 0;
73+
74+
// Disable unused analog inputs
75+
NRF_SAADC->ENABLE = 0;
7176

72-
// pinMode(PIN_LED2, OUTPUT);
73-
// ledOff(PIN_LED2);
7477
}
7578

0 commit comments

Comments
 (0)