<?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>LPC MicrocontrollersのトピックRe: No source available for &amp;quot;0xfffffffe&amp;quot;</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766422#M30848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="317149" data-username="leechen" href="https://community.nxp.com/people/leechen" style="color: #5e89c1; background-color: #ffffff; border: 0px; font-weight: 600; text-decoration: none; font-size: 11.9994px;"&gt;Lee Chen&lt;/A&gt;&lt;/P&gt;&lt;DIV style="font-size: 14px;"&gt;&lt;SPAN style="color: #393939; background-color: #ffffff; font-size: 16px;"&gt;Thank you for your interest in NXP Semiconductor products and&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-size: 14px;"&gt;&lt;SPAN style="color: #393939; background-color: #ffffff; font-size: 16px;"&gt;the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To provide the fastest possible support, I'd like to suggest you to refer to the periph_eeprom demo which illustrates using IAP command to read, write EEPROM operations in LPCOpen library.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2018 02:44:22 GMT</pubDate>
    <dc:creator>jeremyzhou</dc:creator>
    <dc:date>2018-04-27T02:44:22Z</dc:date>
    <item>
      <title>No source available for "0xfffffffe"</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766421#M30847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to read data from EEPROM. I use LPC11u68. &amp;nbsp;When I read data from EEPROM, it shows "No source available for "0xfffffffe". Can any one help me? &amp;nbsp;I don't understand what I've done wrong.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define EEPROM_START_ADDRESS &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;(0x00000040)&lt;/P&gt;&lt;P&gt;#define IAP_NUM_BYTES_TO_READ_WRITE &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;16&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uint32_t buffer[IAP_NUM_BYTES_TO_READ_WRITE / sizeof(uint32_t)];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void readEEPROM(int addressEEPROM, uint32_t serial)&lt;BR /&gt;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;uint32_t command[5], result[4];&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;uint8_t *ptr = (uint8_t *) buffer;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;uint32_t i;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/&amp;nbsp;* Data to be read from EEPROM */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;command[0] = IAP_EEPROM_READ;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;command[1] = addressEEPROM;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;command[2] = (uint32_t) ptr;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;command[3] = IAP_NUM_BYTES_TO_READ_WRITE;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;command[4] = SystemCoreClock / 1000;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;iap_entry(command, result);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(i = 0 ; i &amp;lt; IAP_NUM_BYTES_TO_READ_WRITE ; i++)&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;testReceiverUID[serial][i] = *((uint8_t *)buffer + i);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while(1)&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;uint32_t i;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;readEEPROM(EEPROM_START_ADDRESS + (10 * IAP_NUM_BYTES_TO_READ_WRITE), 10);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2018 01:36:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766421#M30847</guid>
      <dc:creator>leechen</dc:creator>
      <dc:date>2018-04-25T01:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: No source available for "0xfffffffe"</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766422#M30848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="317149" data-username="leechen" href="https://community.nxp.com/people/leechen" style="color: #5e89c1; background-color: #ffffff; border: 0px; font-weight: 600; text-decoration: none; font-size: 11.9994px;"&gt;Lee Chen&lt;/A&gt;&lt;/P&gt;&lt;DIV style="font-size: 14px;"&gt;&lt;SPAN style="color: #393939; background-color: #ffffff; font-size: 16px;"&gt;Thank you for your interest in NXP Semiconductor products and&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-size: 14px;"&gt;&lt;SPAN style="color: #393939; background-color: #ffffff; font-size: 16px;"&gt;the opportunity to serve you.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To provide the fastest possible support, I'd like to suggest you to refer to the periph_eeprom demo which illustrates using IAP command to read, write EEPROM operations in LPCOpen library.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 02:44:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766422#M30848</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-04-27T02:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: No source available for "0xfffffffe"</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766423#M30849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer to : &lt;A href="https://community.nxp.com/thread/436678"&gt;https://community.nxp.com/thread/436678&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(You must disable interrupts ; And from my experience, available too for LPC17xx) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2020 09:57:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/No-source-available-for-quot-0xfffffffe-quot/m-p/766423#M30849</guid>
      <dc:creator>j_meme</dc:creator>
      <dc:date>2020-08-28T09:57:09Z</dc:date>
    </item>
  </channel>
</rss>

