Hi,
Currently I'm trying to get the logged measurements from an iOS native app via NFC.
I can read some measurements by sending the command [0x46,0x00,0x00,0x00] where the last 0x00 are the offset bytes.
For example when there are 1423 measurements and i want to have the latest 200 i sent:
[0x46,0x00,0xC7,0x04]
04:C7 = 1223 so to get the 200 measurements i have to put the offset to 1223
But as far as I understand you can't control how many samples you want to read other then changing the offset value, or do I miss something?
The problem is that if you want to read 1423 measurements i don't get a result back, only the response:
46:01:00:00:00:00:00:00:00:00:00:00:
Think the amount of measurements is to big to sent it in 1 message, so how can I do paging, let's say I want measurement 0 to 100, 100 to 200 etc?
Many thanks if you want to give me some direction, what I'm doing wrong, or that i miss something.