Browse Source
Merge pull request #1497 from oltaco/meshtiny-build-fix
Build fix for Meshtiny
pull/1501/head
ripplebiz
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
variants/meshtiny/MeshtinyBoard.h
|
|
|
@ -4,12 +4,12 @@ |
|
|
|
#include <MeshCore.h> |
|
|
|
#include <helpers/NRF52Board.h> |
|
|
|
|
|
|
|
class MeshtinyBoard : public NRF52BoardDCDC, public NRF52BoardOTA { |
|
|
|
class MeshtinyBoard : public NRF52BoardDCDC { |
|
|
|
protected: |
|
|
|
uint8_t btn_prev_state; |
|
|
|
|
|
|
|
public: |
|
|
|
MeshtinyBoard() : NRF52BoardOTA("Meshtiny OTA") {} |
|
|
|
MeshtinyBoard() : NRF52Board("Meshtiny OTA") {} |
|
|
|
void begin(); |
|
|
|
|
|
|
|
#if defined(P_LORA_TX_LED) |
|
|
|
|