mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 19:15:49 +00:00
variants: Ikoka NRF: Use DC/DC regulator
The Ikoka boards are based on the Xioa NRF52840 module which is known to have the LC circuit for the internal DC/DC regulator to be available. Enable it to save power. Signed-off-by: Frieder Schrempf <frieder@fris.de>
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
#ifdef IKOKA_NRF52
|
||||
|
||||
class IkokaNrf52Board : public NRF52BoardOTA {
|
||||
class IkokaNrf52Board : public NRF52BoardDCDC, public NRF52BoardOTA {
|
||||
public:
|
||||
IkokaNrf52Board() : NRF52BoardOTA("XIAO_NRF52_OTA") {}
|
||||
void begin();
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#ifdef XIAO_NRF52
|
||||
|
||||
class IkokaNanoNRFBoard : public NRF52BoardOTA {
|
||||
class IkokaNanoNRFBoard : public NRF52BoardDCDC, public NRF52BoardOTA {
|
||||
public:
|
||||
IkokaNanoNRFBoard() : NRF52BoardOTA("XIAO_NRF52_OTA") {}
|
||||
void begin();
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#ifdef XIAO_NRF52
|
||||
|
||||
class IkokaStickNRFBoard : public NRF52BoardOTA {
|
||||
class IkokaStickNRFBoard : public NRF52BoardDCDC, public NRF52BoardOTA {
|
||||
public:
|
||||
IkokaStickNRFBoard() : NRF52BoardOTA("XIAO_NRF52_OTA") {}
|
||||
void begin();
|
||||
|
||||
Reference in New Issue
Block a user