<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ISO15693 Write Command Response Issue in NFC</title>
    <link>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946266#M5890</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii&amp;nbsp;Jonathan,&lt;/P&gt;&lt;P&gt;We are using PN7462 Development Board.To&amp;nbsp;develop code for ISO 15693 protocol command&amp;nbsp;using basic internal&amp;nbsp; library functions as you can see in above given code. All other commands developed like this is working fine with no issue but in case of write&amp;nbsp;with option flag I made configurations&amp;nbsp; according to NFC library functions example too . Can you please check&amp;nbsp;is there any mistake&amp;nbsp; we are doing while configuration&amp;nbsp;related to&amp;nbsp; option flag. Please suggest any changes in configuration in above mention code.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Nov 2019 05:14:15 GMT</pubDate>
    <dc:creator>amolborase</dc:creator>
    <dc:date>2019-11-06T05:14:15Z</dc:date>
    <item>
      <title>ISO15693 Write Command Response Issue</title>
      <link>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946264#M5888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue regarding ISO 15693 Write Command. Using Address Flag (0x22) command works fine and also getting success response, but as I am sending frame with Option flag with tag UID (0x62) data get written into tag&amp;nbsp;memory successfully but response I am getting is not&amp;nbsp;success(instead&amp;nbsp;of 0x0000&amp;nbsp; it gives 0x4f01). Here is&amp;nbsp; our customised code for Write Single Block :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uint8_t TxBuflength=0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;phhalRf_RxParams_t sRxParams;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uint16_t Status=0xFFFF;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Status = phhalRf_FieldOn();&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; Status = phhalRf_LoadProtocol_Initiator(E_PHHAL_RF_LP_I_TX_15693_100, E_PHHAL_RF_LP_I_RX_15693_26);&lt;BR /&gt; PH_RETURN_ON_FAILURE(Status)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;phhalRf_SetConfig(PHHAL_RF_CONFIG_TXWAIT_US, 1200);&lt;BR /&gt; phhalRf_SetConfig(PHHAL_RF_CONFIG_RXWAIT_US, 10);&lt;BR /&gt; phhalRf_PCD_SetExchgFdt(20000);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if((Flag &amp;amp; ISO15K_ADDRESS_FLAG)==ISO15K_ADDRESS_FLAG) // Check Valid Flag 0x02&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;phhalRf_PCD_SetExchgFdt(20000);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Flag |=ISO15K_DATA_RATE_FLAG;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TxBuffer[TxBuflength++] = Flag;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TxBuffer[TxBuflength++] = Cmd;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;memcpy(&amp;amp;TxBuffer[TxBuflength],UID,8);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TxBuflength+=8;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Flag |=ISO15K_DATA_RATE_FLAG;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TxBuffer[TxBuflength++] = Flag;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TxBuffer[TxBuflength++] = Cmd;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if((Flag &amp;amp; ISO15K_OPTION_FLAG)==ISO15K_OPTION_FLAG)&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Status = phhalRf_PCD_Exchg_TxOnlyEOF(RxBuffer,&amp;amp;sRxParams);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;__NOP();&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TxBuffer[TxBuflength++] = BlockAddress;&lt;/P&gt;&lt;P&gt;memcpy(&amp;amp;TxBuffer[TxBuflength],(uint8_t *)BlockData,4);&lt;/P&gt;&lt;P&gt;TxBuflength +=4;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Status = phhalRf_PCD_Exchg(TxBuffer,RxBuffer,TxBuflength,&amp;amp;sRxParams); // Exchange function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return&amp;nbsp;&lt;SPAN&gt;Status;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is anything wrong or missing in above code? Please guide us for the same&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in Advance&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Amol&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IFRAME class="ginger-extension-definitionpopup" src="chrome-extension://kdfieneakcjfaiglcfcgkidlkmlijjnh/content/popups/definitionPopup/index.html?title=Status&amp;amp;description=the%20relative%20position%20or%20standing%20of%20things%20or%20especially%20persons%20in%20a%20society" style="left: -46.5px; top: 1089px; z-index: 100001; display: none;"&gt;



&lt;/IFRAME&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2019 10:08:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946264#M5888</guid>
      <dc:creator>amolborase</dc:creator>
      <dc:date>2019-10-21T10:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: ISO15693 Write Command Response Issue</title>
      <link>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946265#M5889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&amp;nbsp;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="319186" data-username="amolborase" href="https://community.nxp.com/people/amolborase"&gt;Amol Borase&lt;/A&gt;,&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;what ISO 15693 tag are you using and what reader as well ?&amp;nbsp;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;my recommendation would be that you base your code in our NFC reader library first in order to avoid any issue, there is an example available in the NFC reader library&amp;nbsp; for ISO 15693.&amp;nbsp;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/design/designs/nfc-reader-library-software-support-for-nfc-frontend-solutions:NFC-READER-LIBRARY" title="https://www.nxp.com/design/designs/nfc-reader-library-software-support-for-nfc-frontend-solutions:NFC-READER-LIBRARY"&gt;NFC Reader Library | NXP&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;please let me know which products from NXP are you using and whether you are using our library as a base.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Have a great day !&lt;BR /&gt;BR&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2019 17:30:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946265#M5889</guid>
      <dc:creator>Jonathan_Iglesias</dc:creator>
      <dc:date>2019-11-05T17:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: ISO15693 Write Command Response Issue</title>
      <link>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946266#M5890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii&amp;nbsp;Jonathan,&lt;/P&gt;&lt;P&gt;We are using PN7462 Development Board.To&amp;nbsp;develop code for ISO 15693 protocol command&amp;nbsp;using basic internal&amp;nbsp; library functions as you can see in above given code. All other commands developed like this is working fine with no issue but in case of write&amp;nbsp;with option flag I made configurations&amp;nbsp; according to NFC library functions example too . Can you please check&amp;nbsp;is there any mistake&amp;nbsp; we are doing while configuration&amp;nbsp;related to&amp;nbsp; option flag. Please suggest any changes in configuration in above mention code.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2019 05:14:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/NFC/ISO15693-Write-Command-Response-Issue/m-p/946266#M5890</guid>
      <dc:creator>amolborase</dc:creator>
      <dc:date>2019-11-06T05:14:15Z</dc:date>
    </item>
  </channel>
</rss>

