Hello.
I use nRF52 DK, S132v2 and PCA10040. I want to get timestamp like GetTickCount of C++.
When I searched Documentation, I found RTC what can do like GetTickCount. Is there Another function like GetTickCount?
Please tell me.
Hello.
I use nRF52 DK, S132v2 and PCA10040. I want to get timestamp like GetTickCount of C++.
When I searched Documentation, I found RTC what can do like GetTickCount. Is there Another function like GetTickCount?
Please tell me.
The systick timer can be used, but this will only tick when the CPU is running (not in sleep modes).
The RTC can be used, and is probably your best option
The systick timer can be used, but this will only tick when the CPU is running (not in sleep modes).
The RTC can be used, and is probably your best option
Thank you for your answer!