From ab88a3dec0b19e01d6d4174e09c68d7c501ca3a9 Mon Sep 17 00:00:00 2001 From: Anthony Good Date: Wed, 5 Feb 2020 20:27:00 -0500 Subject: [PATCH] 2020.02.05.02 Minor add to DEBUG_RTC --- k3ng_rotator_controller/k3ng_rotator_controller.ino | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/k3ng_rotator_controller/k3ng_rotator_controller.ino b/k3ng_rotator_controller/k3ng_rotator_controller.ino index 7a4020b..08da660 100644 --- a/k3ng_rotator_controller/k3ng_rotator_controller.ino +++ b/k3ng_rotator_controller/k3ng_rotator_controller.ino @@ -410,6 +410,9 @@ STALL_CHECK_FREQUENCY_MS_EL STALL_CHECK_DEGREES_THRESHOLD_EL Pins: az_rotation_stall_detected, el_rotation_stall_detected + + 2020.02.05.02 + Minor add to DEBUG_RTC All library files should be placed in directories likes \sketchbook\libraries\library1\ , \sketchbook\libraries\library2\ , etc. Anything rotator_*.* should be in the ino directory! @@ -420,7 +423,7 @@ */ -#define CODE_VERSION "2020.02.05.01" +#define CODE_VERSION "2020.02.05.02" #include #include @@ -7688,7 +7691,13 @@ void initialize_peripherals(){ #ifdef FEATURE_RTC_DS1307 + #ifdef DEBUG_RTC + debug.println("initialize_peripherals: rtc.begin"); + #endif // DEBUG_RTC rtc.begin(); + #ifdef DEBUG_RTC + debug.println("initialize_peripherals: begin complete"); + #endif // DEBUG_RTC #endif // FEATURE_RTC_DS1307 #ifdef FEATURE_ETHERNET