mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 04:09:57 +00:00
The startOTAUpdate() is the same for all NRF52 boards. Use a common implementation for all boards that currently have a specific implementation. The following boards currently have an empty startOTAUpdate() for whatever reasons and therefore are not inheriting NRF52BoardOTA to keep the same state: Nano G2 Ultra, Seeed SenseCAP T1000-E, Wio WM1110. Signed-off-by: Frieder Schrempf <frieder@fris.de>
25 lines
544 B
C++
25 lines
544 B
C++
#include <Arduino.h>
|
|
#include <Wire.h>
|
|
|
|
#include "PromicroBoard.h"
|
|
|
|
void PromicroBoard::begin() {
|
|
NRF52Board::begin();
|
|
btn_prev_state = HIGH;
|
|
|
|
pinMode(PIN_VBAT_READ, INPUT);
|
|
|
|
#ifdef BUTTON_PIN
|
|
pinMode(BUTTON_PIN, INPUT_PULLUP);
|
|
#endif
|
|
|
|
#if defined(PIN_BOARD_SDA) && defined(PIN_BOARD_SCL)
|
|
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL);
|
|
#endif
|
|
|
|
Wire.begin();
|
|
|
|
pinMode(SX126X_POWER_EN, OUTPUT);
|
|
digitalWrite(SX126X_POWER_EN, HIGH);
|
|
delay(10); // give sx1262 some time to power up
|
|
} |