<?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>Wireless MCUのトピックNFC PN7150 Internal Assert issue</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/NFC-PN7150-Internal-Assert-issue/m-p/1520228#M13672</link>
    <description>&lt;P&gt;Hi.&lt;BR /&gt;&lt;BR /&gt;I have a problem very similar to this thread,&amp;nbsp;but with some differences&lt;BR /&gt;&lt;BR /&gt;&lt;A title="How to solve NFC PN7150 Internal Assert issue." href="https://community.nxp.com/t5/NFC/How-to-solve-NFC-PN7150-Internal-Assert-issue/m-p/1266795" target="_self"&gt;How to solve NFC PN7150 Internal Assert issue.&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the same way I am sending an RF field generation:&lt;BR /&gt;&lt;BR /&gt;0x21 0x03 0x09 0x04 0x00 0x01 0x02 0x01 0x01 0x01 0x06 0x01 (Star Discovery)&lt;BR /&gt;&lt;BR /&gt;I then get an appropriate response from the NFC:&lt;BR /&gt;&lt;BR /&gt;0x41 0x03 0x01 0x00 (RF_DISCOVER_RSP)&lt;BR /&gt;&lt;BR /&gt;And then a CORE Reset notification&lt;BR /&gt;&lt;BR /&gt;0x60 0x00 0x06 0xA0 0x00 0xB1 0xAB 0x20 0x00 (&lt;SPAN&gt;CORE_RESET_NTF&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It seems to me that it is different from the thread mentioned, since I do get a correct response to&amp;nbsp;Star Discovery and the fields after 0xA0 in &lt;SPAN&gt;CORE_RESET_NTF&lt;/SPAN&gt; are not equal to zero.&lt;/P&gt;&lt;P&gt;Any suggestion or comment?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 10 Sep 2022 14:32:42 GMT</pubDate>
    <dc:creator>dominusdrr</dc:creator>
    <dc:date>2022-09-10T14:32:42Z</dc:date>
    <item>
      <title>NFC PN7150 Internal Assert issue</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/NFC-PN7150-Internal-Assert-issue/m-p/1520228#M13672</link>
      <description>&lt;P&gt;Hi.&lt;BR /&gt;&lt;BR /&gt;I have a problem very similar to this thread,&amp;nbsp;but with some differences&lt;BR /&gt;&lt;BR /&gt;&lt;A title="How to solve NFC PN7150 Internal Assert issue." href="https://community.nxp.com/t5/NFC/How-to-solve-NFC-PN7150-Internal-Assert-issue/m-p/1266795" target="_self"&gt;How to solve NFC PN7150 Internal Assert issue.&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the same way I am sending an RF field generation:&lt;BR /&gt;&lt;BR /&gt;0x21 0x03 0x09 0x04 0x00 0x01 0x02 0x01 0x01 0x01 0x06 0x01 (Star Discovery)&lt;BR /&gt;&lt;BR /&gt;I then get an appropriate response from the NFC:&lt;BR /&gt;&lt;BR /&gt;0x41 0x03 0x01 0x00 (RF_DISCOVER_RSP)&lt;BR /&gt;&lt;BR /&gt;And then a CORE Reset notification&lt;BR /&gt;&lt;BR /&gt;0x60 0x00 0x06 0xA0 0x00 0xB1 0xAB 0x20 0x00 (&lt;SPAN&gt;CORE_RESET_NTF&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It seems to me that it is different from the thread mentioned, since I do get a correct response to&amp;nbsp;Star Discovery and the fields after 0xA0 in &lt;SPAN&gt;CORE_RESET_NTF&lt;/SPAN&gt; are not equal to zero.&lt;/P&gt;&lt;P&gt;Any suggestion or comment?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Sep 2022 14:32:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/NFC-PN7150-Internal-Assert-issue/m-p/1520228#M13672</guid>
      <dc:creator>dominusdrr</dc:creator>
      <dc:date>2022-09-10T14:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: NFC PN7150 Internal Assert issue</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/NFC-PN7150-Internal-Assert-issue/m-p/1521341#M13685</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It seems that I discovered the error.&lt;/P&gt;&lt;P&gt;I began to analyze each one of the frames that the DH sends and the PN7150 responds until I reach the clock configuration (NXP_CLK_CONF)&lt;/P&gt;&lt;P&gt;I was configuring as PLL&lt;/P&gt;&lt;LI-CODE lang="c"&gt;uint8_t NxpNci_CLK_CONF[] = 
{ 
0x20, 0x02, 0x09, 0x02, /* CORE_SET_CONFIG_CMD */ 
0xA0, 0x03, 0x01, 0x11, /* CLOCK_SEL_CFG */ 
0xA0, 0x04, 0x01, 0x01 /* CLOCK_TO_CFG */ 
};&lt;/LI-CODE&gt;&lt;P&gt;But my hardware uses a 27.12MHz crystal and the setting must be Xtal&lt;/P&gt;&lt;LI-CODE lang="c"&gt;uint8_t NxpNci_CLK_CONF[] = { 
0x20, 0x02, 0x05, 0x01, /* CORE_SET_CONFIG_CMD */ 
0xA0, 0x03, 0x01, 0x08 /* CLOCK_SEL_CFG */ };&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought that this mistake was not going to solve the problem, but after correcting it and checking just in case the error was repeated, to my surprise, it works fine.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 15:00:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/NFC-PN7150-Internal-Assert-issue/m-p/1521341#M13685</guid>
      <dc:creator>dominusdrr</dc:creator>
      <dc:date>2022-09-13T15:00:25Z</dc:date>
    </item>
  </channel>
</rss>

