Reading bytes from Mifare Ultralight
Im developing on Qt Meego for Nokia n9.
I need to read Mifare Ultralight tags.
(they have 16 sectors/pages from 0-15 and each have 4 bytes)
I can read UID correctly and type gives me TagType2. (hopefully the returned tag type is correct) [url]http://doc.qt.nokia.com/qtmobility/qnearfieldtagtype2.html[/url]
Now i would like to read bytes from different sectors.
[CODE]
QNearFieldTarget::RequestId page3 = target->readBlock(3);
QVariant response = target->requestResponse(page3);
QByteArray p = response.toByteArray();
nfcInfo.append("Bytes on page3: " + QString::QString(p));
[/CODE]
target is QNearFieldTagType2*
but target->readBlock(3) is not working at all.
just to be clear target->uid() works so reading is happening kinda correctly.
In what way i could fix the readBlock() or implement it differently to get the bytes out from my card?
Re: Reading bytes from Mifare Ultralight
Unfortunately, tag-type specific access is not possible in MeeGo Harmattan through the Qt Mobility NFC APIs (see: [url]http://doc.qt.nokia.com/qtmobility/connectivity-api.html#nfc[/url] ).
The code works on Symbian, but directly accessing bytes of NFC tags is unfortunately not available on the N9.