aboutsummaryrefslogtreecommitdiffstats
path: root/source/rtc.hpp
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-04-01 22:41:39 -0400
committertcsullivan <tullivan99@gmail.com>2019-04-01 22:41:39 -0400
commite064af7bf4d18e7397318d40b40deb1caa4a52ec (patch)
tree2f954458922bacd0c44eef1586691cfa211d7c59 /source/rtc.hpp
parentd1a1e7a053cb8840e9c90b380a005ddd2caf3eff (diff)
fullscreen widgets, limited scrolling
Diffstat (limited to 'source/rtc.hpp')
-rw-r--r--source/rtc.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/rtc.hpp b/source/rtc.hpp
index e4a9938..99ca2ba 100644
--- a/source/rtc.hpp
+++ b/source/rtc.hpp
@@ -22,12 +22,14 @@
#define RTC_HPP_
#include <rtc/nrf_drv_rtc.h>
+#include <stdint.h>
+
#include "sharp.hpp"
class RTC {
private:
static nrf_drv_rtc_t rtc;
- static unsigned int rtcCount;
+ static uint32_t rtcCount;
public:
static void begin(void);
@@ -40,6 +42,8 @@ public:
rtcCount = t;
}
+ static const char *getDate(char *buf);
+
private:
static void handler(nrf_drv_rtc_int_type_t type);
};