Hello!
I am using nRF52DK and the nRF Connect SDK with Zephyr to create my custom application. For one part, I am recording IMU values at a frequency of up to 200 Hz and loading them into a circular buffer which then gets offloaded via BLE to my central device over several packets. I am having some packet loss and I want to make sure I know exactly the order and time the data got recorded, so I want to implement a timestamp, only to be retrieved for a few minutes every hour. My application has a low power requirement (<2mA), and I'm wondering the best way to approach fetching the date/time in UNIX. I tried using the Nordic date/time library but kept getting compilation errors whenever I added CONFIG_DATE_TIME=y to my prj.conf, so I don't know if I'm implementing it correctly.
Any help would be really appreciated!