Hi,
I am using nRF52832, SDK16.0
with SES
Is that nRF52832 have able to send timestamp through BLE. is that hardware able to calculate timestamp
will it act as REAL TIME CLOCK
Hi,
I am using nRF52832, SDK16.0
with SES
Is that nRF52832 have able to send timestamp through BLE. is that hardware able to calculate timestamp
will it act as REAL TIME CLOCK
Hi,
Sunil vignesh said:internal RTC is a counter right?
Yes, the RTC is a counter that can count 32.768 kHz clock cycles, which may or may not be divided by a Prescaler. (So the accuracy of the RTC is given by the accuracy of your 32 kHz clock source.)
Sunil vignesh said:i have to count the time until reset or power off. When it again power up the data will be lost right?
In principle yes, though you could use a method such as suggested by hmolesworth, which seems like a very good suggestion.
will timer / counter work in sleep mode?
The RTC will work in normal low power (system ON) sleep mode, yes. It is always used when you use BLE for instance, in order to wake up at connection events, advertising events etc. The current consumption is system ON low power mode is ~2-3 uA, which is not very much.
It will not run in system off mode, though, but most applications never use system off. In system off the IC is almost entirely powered off, and can only wake up on GPIO, LPCOMP or NFC.
will you suggest any external ic for Timestamp.
how nrf_calender works.
how the time and date will taken
Hi,
Sunil vignesh said:will you suggest any external ic for Timestamp.
I do not have any suggestions for that. It is not directly related to the nRF, but perhaps some other members on this forum has some suggestions?
Sunil vignesh said:how nrf_calender works.
nrf_calendar uses the RTC to generate ticks and the time.h library to map this to actual calendar time and date. You can refer to the source code for details.
Sunil vignesh said:how the time and date will taken
The calendar time and date is calculated in SW, based on the elapsed time, counted by the RTC.