From 2f6427ce21975559a20af71b1239bbf4c87b7621 Mon Sep 17 00:00:00 2001 From: Florent Date: Sun, 30 Mar 2025 15:09:40 +0200 Subject: [PATCH] Remove rtc auto-detect on t1000 --- variants/t1000-e/target.cpp | 6 ++---- variants/t1000-e/target.h | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/variants/t1000-e/target.cpp b/variants/t1000-e/target.cpp index afc0eadb..cf51cc91 100644 --- a/variants/t1000-e/target.cpp +++ b/variants/t1000-e/target.cpp @@ -1,6 +1,5 @@ #include #include "target.h" -#include T1000eBoard board; @@ -8,8 +7,7 @@ RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BU WRAPPER_CLASS radio_driver(radio, board); -VolatileRTCClock fallback_clock; -AutoDiscoverRTCClock rtc_clock(fallback_clock); +VolatileRTCClock rtc_clock; #ifndef LORA_CR #define LORA_CR 5 @@ -38,7 +36,7 @@ static const Module::RfSwitchMode_t rfswitch_table[] = { #endif bool radio_init() { - rtc_clock.begin(Wire); + //rtc_clock.begin(Wire); #ifdef LR11X0_DIO3_TCXO_VOLTAGE float tcxo = LR11X0_DIO3_TCXO_VOLTAGE; diff --git a/variants/t1000-e/target.h b/variants/t1000-e/target.h index 7ffafded..83bd3eae 100644 --- a/variants/t1000-e/target.h +++ b/variants/t1000-e/target.h @@ -5,11 +5,11 @@ #include #include #include -#include +#include extern T1000eBoard board; extern WRAPPER_CLASS radio_driver; -extern AutoDiscoverRTCClock rtc_clock; +extern VolatileRTCClock rtc_clock; bool radio_init(); uint32_t radio_get_rng_seed();