2025-04-07 18:14:39 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <MeshCore.h>
|
|
|
|
|
#include <Arduino.h>
|
2025-12-12 19:01:15 +07:00
|
|
|
#include <helpers/NRF52Board.h>
|
2025-04-07 18:14:39 +02:00
|
|
|
|
2025-04-11 14:51:10 +02:00
|
|
|
#ifdef XIAO_NRF52
|
|
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
class XiaoNrf52Board : public NRF52BoardDCDC, public NRF52BoardOTA {
|
2025-04-07 18:14:39 +02:00
|
|
|
public:
|
2025-12-09 19:56:00 +01:00
|
|
|
XiaoNrf52Board() : NRF52BoardOTA("XIAO_NRF52_OTA") {}
|
2025-04-07 18:14:39 +02:00
|
|
|
void begin();
|
|
|
|
|
|
|
|
|
|
#if defined(P_LORA_TX_LED)
|
|
|
|
|
void onBeforeTransmit() override {
|
|
|
|
|
digitalWrite(P_LORA_TX_LED, LOW); // turn TX LED on
|
|
|
|
|
}
|
|
|
|
|
void onAfterTransmit() override {
|
|
|
|
|
digitalWrite(P_LORA_TX_LED, HIGH); // turn TX LED off
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
uint16_t getBattMilliVolts() override {
|
|
|
|
|
// Please read befor going further ;)
|
|
|
|
|
// https://wiki.seeedstudio.com/XIAO_BLE#q3-what-are-the-considerations-when-using-xiao-nrf52840-sense-for-battery-charging
|
|
|
|
|
|
2025-09-15 14:46:10 +02:00
|
|
|
// We can't drive VBAT_ENABLE to HIGH as long
|
2025-04-20 16:32:46 +02:00
|
|
|
// as we don't know wether we are charging or not ...
|
|
|
|
|
// this is a 3mA loss (4/1500)
|
|
|
|
|
digitalWrite(VBAT_ENABLE, LOW);
|
|
|
|
|
int adcvalue = 0;
|
|
|
|
|
analogReadResolution(12);
|
2025-09-15 14:46:10 +02:00
|
|
|
analogReference(AR_INTERNAL_3_0);
|
2025-04-20 16:32:46 +02:00
|
|
|
delay(10);
|
|
|
|
|
adcvalue = analogRead(PIN_VBAT);
|
|
|
|
|
return (adcvalue * ADC_MULTIPLIER * AREF_VOLTAGE) / 4.096;
|
2025-04-07 18:14:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* getManufacturerName() const override {
|
|
|
|
|
return "Seeed Xiao-nrf52";
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 17:26:15 +01:00
|
|
|
void powerOff() override {
|
|
|
|
|
// set led on and wait for button release before poweroff
|
|
|
|
|
digitalWrite(PIN_LED, LOW);
|
|
|
|
|
#ifdef PIN_USER_BTN
|
|
|
|
|
while(digitalRead(PIN_USER_BTN) == LOW);
|
|
|
|
|
#endif
|
|
|
|
|
digitalWrite(LED_GREEN, HIGH);
|
|
|
|
|
digitalWrite(LED_BLUE, HIGH);
|
|
|
|
|
digitalWrite(PIN_LED, HIGH);
|
|
|
|
|
|
|
|
|
|
#ifdef PIN_USER_BTN
|
|
|
|
|
// configure button press to wake up when in powered off state
|
|
|
|
|
nrf_gpio_cfg_sense_input(digitalPinToInterrupt(g_ADigitalPinMap[PIN_USER_BTN]), NRF_GPIO_PIN_NOPULL, NRF_GPIO_PIN_SENSE_LOW);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
sd_power_system_off();
|
|
|
|
|
}
|
2025-04-07 18:14:39 +02:00
|
|
|
};
|
2025-04-11 14:51:10 +02:00
|
|
|
|
|
|
|
|
#endif
|