From e064af7bf4d18e7397318d40b40deb1caa4a52ec Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Mon, 1 Apr 2019 22:41:39 -0400 Subject: fullscreen widgets, limited scrolling --- source/rtc.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source/rtc.cpp') diff --git a/source/rtc.cpp b/source/rtc.cpp index f28a43d..ec7f5db 100644 --- a/source/rtc.cpp +++ b/source/rtc.cpp @@ -22,7 +22,7 @@ #include nrf_drv_rtc_t RTC::rtc = NRF_DRV_RTC_INSTANCE(2); -unsigned int RTC::rtcCount = 0; +uint32_t RTC::rtcCount = 0; void RTC::begin(void) { @@ -39,13 +39,19 @@ void RTC::begin(void) nrf_drv_rtc_enable(&rtc); } +const char *RTC::getDate(char *buf) +{ + +} + void RTC::handler([[maybe_unused]] nrf_drv_rtc_int_type_t int_type) { static unsigned char counter = 0; if (int_type == NRF_DRV_RTC_INT_TICK) { if (++counter == 8) { counter = 0; - rtcCount++; + if (++rtcCount == 86400) + rtcCount = 0; } } } -- cgit v1.2.3