mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-27 11:15:11 +00:00
578d55b28a
Signed-off-by: Frieder Schrempf <frieder@fris.de>
14 lines
250 B
C++
14 lines
250 B
C++
#include <Arduino.h>
|
|
#include "ThinknodeM3Board.h"
|
|
#include <Wire.h>
|
|
|
|
#include <bluefruit.h>
|
|
|
|
void ThinknodeM3Board::begin() {
|
|
Nrf52BoardDCDC::begin();
|
|
btn_prev_state = HIGH;
|
|
|
|
Wire.begin();
|
|
|
|
delay(10); // give sx1262 some time to power up
|
|
} |