I have an nrf51-DK with an external Temperatur/Humidity sensor. Data is received over I2C. The goal is to save data 6 weeks. I will also need the SoftDevice S110, because I want to send the data to a mobile device.
My calculation:
-Data type is uint8_t. As I remember uint8_t needs 1Byte storage size. -I would like to sample the data every minute. So for 6 weeks: 6724*60 = 60480. -There are 2 different data to store(Temperature/Humidity).
Result: 60480 * 2 = 120 kBytes
My question is, what is the maximum size of data which can be stored in the pstorage?
And would it be possible to store 120 kBytes data?