Browse Source

R1 Neo: Turn off debugging, rtc cleanup

pull/2007/head
kelsey hudson 3 months ago
parent
commit
a56419dc21
  1. 6
      src/helpers/AutoDiscoverRTCClock.cpp
  2. 1
      variants/muziworks_r1_neo/R1NeoBoard.cpp
  3. 1
      variants/muziworks_r1_neo/R1NeoBoard.h
  4. 2
      variants/muziworks_r1_neo/platformio.ini

6
src/helpers/AutoDiscoverRTCClock.cpp

@ -33,9 +33,9 @@ void AutoDiscoverRTCClock::begin(TwoWire& wire) {
if (i2c_probe(wire, RV3028_ADDRESS)) {
rtc_rv3028.initI2C(wire);
rtc_rv3028.writeToRegister(0x35, 0x00);
rtc_rv3028.writeToRegister(0x37, 0xB4); // Direct Switching Mode (DSM): when VDD < VBACKUP, switchover occurs from VDD to VBACKUP
rtc_rv3028.set24HourMode(); // Set the device to use the 24hour format (default) instead of the 12 hour format
rtc_rv3028.writeToRegister(0x35, 0x00);
rtc_rv3028.writeToRegister(0x37, 0xB4); // Direct Switching Mode (DSM): when VDD < VBACKUP, switchover occurs from VDD to VBACKUP
rtc_rv3028.set24HourMode(); // Set the device to use the 24hour format (default) instead of the 12 hour format
rv3028_success = true;
}

1
variants/muziworks_r1_neo/R1NeoBoard.cpp

@ -14,6 +14,7 @@ const PowerMgtConfig power_config = {
void R1NeoBoard::initiateShutdown(uint8_t reason) {
// Disable LoRa module power before shutdown
MESH_DEBUG_PRINTLN("R1Neo: shutting down");
digitalWrite(SX126X_POWER_EN, LOW);
if (reason == SHUTDOWN_REASON_LOW_VOLTAGE ||

1
variants/muziworks_r1_neo/R1NeoBoard.h

@ -38,6 +38,7 @@ public:
#define BATTERY_SAMPLES 8
uint16_t getBattMilliVolts() override {
MESH_DEBUG_PRINTLN("R1Neo: Sampling battery");
analogReadResolution(12);
uint32_t raw = 0;

2
variants/muziworks_r1_neo/platformio.ini

@ -91,7 +91,7 @@ build_flags =
-D BLE_DEBUG_LOGGING=1
-D OFFLINE_QUEUE_SIZE=256
; -D MESH_PACKET_LOGGING=1
-D MESH_DEBUG=1
; -D MESH_DEBUG=1
build_src_filter = ${R1Neo.build_src_filter}
+<helpers/ui/buzzer.cpp>
+<helpers/nrf52/SerialBLEInterface.cpp>

Loading…
Cancel
Save