Skip to content

Commit

Permalink
Bug fix release. Fixed PPSE AID value (removed final 0x00). Added not…
Browse files Browse the repository at this point in the history
…e to

apdu.qml pages to indicate that users must decide whether or not to
specify Le=0x00 or not as this requirement varies from card to card. Fixed
incorrect QML id reference in qpdu.qml.
  • Loading branch information
mdwoolley committed Dec 13, 2013
1 parent f72b0b4 commit c2a88d0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
4 changes: 4 additions & 0 deletions NfcTool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0.html).

**Release History**

* **V5.1.1**
* Fixed PPSE AID value (removed final 0x00). Added note to apdu.qml pages to indicate that users must decide whether or not to specify Le=0x00 or not as this requirement varies from card to card.
* Fixed incorrect QML id reference in qpdu.qml

* **V5.1.0**
* Added LLCP function
* Fixed some memory management issues
Expand Down
13 changes: 11 additions & 2 deletions NfcTool/assets/720x720/apdu.qml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Page {
checked: _apdu._ppse
onCheckedChanged: {
if (checked) {
txf_aid.text = "325041592E5359532E444446303100"
txf_aid.text = "325041592E5359532E4444463031"
} else {
txf_aid.text = ""
}
Expand Down Expand Up @@ -245,6 +245,15 @@ Page {
enabled: ! cbx_select_only.checked
}
}
Label {
text: "Note: For a zero length response, some cards require Le=0x00 whilsts others require it to be completely absent from the APDU"
multiline: true
textStyle {
base: SystemDefaults.TextStyles.SmallText
fontStyle: FontStyle.Italic
color: Color.LightGray
}
}
Label {
text: "Command data:"
textStyle {
Expand Down Expand Up @@ -275,7 +284,7 @@ Page {
ActionBar.placement: ActionBarPlacement.OnBar
onTriggered: {
console.log("Issue APDU Triggered");
apdu.apduRequested();
apdu_menu.apduRequested();
}
}
]
Expand Down
13 changes: 11 additions & 2 deletions NfcTool/assets/apdu.qml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Page {
checked: _apdu._ppse
onCheckedChanged: {
if (checked) {
txf_aid.text = "325041592E5359532E444446303100"
txf_aid.text = "325041592E5359532E4444463031"
} else {
txf_aid.text = ""
}
Expand Down Expand Up @@ -239,6 +239,15 @@ Page {
enabled: ! cbx_select_only.checked
}
}
Label {
text: "Note: For a zero length response, some cards require Le=0x00 whilsts others require it to be completely absent from the APDU"
multiline: true
textStyle {
base: SystemDefaults.TextStyles.SmallText
fontStyle: FontStyle.Italic
color: Color.LightGray
}
}
Label {
text: "Command data:"
textStyle {
Expand Down Expand Up @@ -266,7 +275,7 @@ Page {
ActionBar.placement: ActionBarPlacement.OnBar
onTriggered: {
console.log("Issue APDU Triggered");
apdu.apduRequested();
apdu_menu.apduRequested();
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion NfcTool/src/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

// General constants

const char* Settings::AppVersion = "5.1.0";
const char* Settings::AppVersion = "5.1.1";
const char* Settings::DOMAIN = "my.domain.com";
const char* Settings::TYPE = "myrecordtype";
const char* Settings::CONTENT = "content";
Expand Down

0 comments on commit c2a88d0

Please sign in to comment.