2025-12-12 19:01:15 +07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include <MeshCore.h>
|
|
|
|
|
|
|
|
|
|
#if defined(NRF52_PLATFORM)
|
|
|
|
|
|
|
|
|
|
class NRF52Board : public mesh::MainBoard {
|
|
|
|
|
public:
|
|
|
|
|
float getMCUTemperature() override;
|
2025-12-09 14:31:55 +01:00
|
|
|
virtual void reboot() override { NVIC_SystemReset(); }
|
2025-12-12 19:01:15 +07:00
|
|
|
};
|
|
|
|
|
#endif
|