Deduplicate DC/DC regulator enable for NRF52 boards

Some NRF52 boards are able to use the internal power-efficient DC/DC
regulator. Add a new class that can be inherited by board classes to
enable this feature and reduce the power consumption.

Signed-off-by: Frieder Schrempf <frieder@fris.de>
This commit is contained in:
Frieder Schrempf
2025-12-09 17:05:33 +01:00
parent 93d1560d14
commit e3bb225efb
12 changed files with 40 additions and 56 deletions

View File

@@ -4,7 +4,7 @@
#include <Arduino.h>
#include <helpers/NRF52Board.h>
class T1000eBoard : public NRF52Board {
class T1000eBoard : public NRF52BoardDCDC {
protected:
uint8_t btn_prev_state;