diff options
Diffstat (limited to 'source/rtc.hpp')
-rw-r--r-- | source/rtc.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/rtc.hpp b/source/rtc.hpp new file mode 100644 index 0000000..1eb71a8 --- /dev/null +++ b/source/rtc.hpp @@ -0,0 +1,18 @@ +#include <rtc/nrf_drv_rtc.h> + +class RTC { +private: + static nrf_drv_rtc_t rtc; + static unsigned int rtcCount; + +public: + static void begin(void); + + inline static unsigned int ticks(void) { + return rtcCount; + } + +private: + static void handler(nrf_drv_rtc_int_type_t type); +}; + |