mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
250 B
14 lines
250 B
#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
|
|
}
|