Added NRF52Board.h and NRF52Board.cpp Modified NRF52 variants to extend from NRF52Board to share common feature
12 lines
186 B
C++
12 lines
186 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <MeshCore.h>
|
|
|
|
#if defined(NRF52_PLATFORM)
|
|
|
|
class NRF52Board : public mesh::MainBoard {
|
|
public:
|
|
float getMCUTemperature() override;
|
|
};
|
|
#endif |