<?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: LPC4337 Dual core example, M0 run from Flash bankB problem in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715808#M28920</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/bernhardfink"&gt;bernhardfink&lt;/A&gt;‌, do you have a simple example as the required by&amp;nbsp;Ali Asadzadeh? I'm stuck in the same situation and I think that most of the problems are related to&amp;nbsp;the project configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exactly same MCU (LPC4337) but in a custom board. At the moment, I'm using the M4 for all operations but I would like to port all the IO operations to M0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the pptx file, it was really informative because I couldn't find any guide or tutorial to keep a dual core application from scratch running :/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Apr 2018 19:11:02 GMT</pubDate>
    <dc:creator>fernandotheirs</dc:creator>
    <dc:date>2018-04-12T19:11:02Z</dc:date>
    <item>
      <title>LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715804#M28916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;I want to use flash bank A for the M4 core at Address of 0x1A000000 and Ram at address of 0x20000000,so far so good,&lt;/P&gt;&lt;P&gt;This is my code inside the M4 core&lt;/P&gt;&lt;P&gt;M4 main code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 &lt;SPAN class="comment token"&gt;/* Stop CM0 core */&lt;/SPAN&gt;
 LPC_RGU&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;RESET_CTRL1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;24&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="comment token"&gt;/* Download CM0 application */&lt;/SPAN&gt;
 Load_CM0_Image &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x1B000000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; LR0&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;sizeof&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LR0&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; 
 &lt;SPAN class="comment token"&gt;/* Start CM0 core */&lt;/SPAN&gt;
 LPC_RGU&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;RESET_CTRL1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;/*----------------------------------------------------------------------------
 Load Cortex M0APP Application Image
 *----------------------------------------------------------------------------*/&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; Load_CM0_Image &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;uint32_t DestAddr&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;const&lt;/SPAN&gt; uint8_t &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;Image&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; uint32_t Sz&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 uint32_t i&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 uint8_t &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;dp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;uint8_t &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;DestAddr&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// &lt;/SPAN&gt;&lt;SPAN class="comment token"&gt;/* Copy application image */&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// for (i = 0; i &amp;lt; Sz; i++) {&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// dp[i] = Image[i];&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// }&lt;/SPAN&gt;
 &lt;SPAN class="comment token"&gt;/* Set shadow pointer to beginning of the CM0 application */&lt;/SPAN&gt;
 LPC_CREG&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;M0APPMEMMAP &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; DestAddr&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is my M0 code with these settings ,flash from 0x1B000000 and ram from 0x10000000&lt;/P&gt;&lt;P&gt;M0 main file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt; i&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
 &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 i&lt;SPAN class="operator token"&gt;++&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and these are the command line commands for the M0 project&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;$K&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;ARM&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;BIN&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;ElfDwT&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exe &lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;L &lt;SPAN class="token function"&gt;BASEADDRESS&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x1B000000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
fromelf &lt;SPAN class="operator token"&gt;--&lt;/SPAN&gt;cadcombined &lt;SPAN class="operator token"&gt;--&lt;/SPAN&gt;output&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"..\Cortex M4\CM0_Image.c"&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;".\Objects\Test.axf"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this one is for the M4 core&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;$K&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;ARM&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;BIN&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;ElfDwT&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exe &lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;L &lt;SPAN class="token function"&gt;BASEADDRESS&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x1A000000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The problem is that the Flash bank B @ 0x1B000000 is empty when I view it with j-link in debug and even if I program it with M0 app when I start debugging of M0, it would not run! Do you have any Idea what might has gone wrong? what should I do to use the Flash bank B as the Code part for M0 core, I have successfully done it in the RAM but I need it in the flash, Also Please Note that my Tool chain is keil and my Debugger is J-link, any hints or a sample, project would help a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2018 15:16:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715804#M28916</guid>
      <dc:creator>aliasadzadeh</dc:creator>
      <dc:date>2018-02-05T15:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715805#M28917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ali,&lt;/P&gt;&lt;P&gt;there are DualCore examples for the Keil MCB4357 board inside the Keil tool here:&lt;/P&gt;&lt;P&gt;..\Keil_v5\ARM\PACK\Keil\LPC4300_DFP\2.8.0\Boards\Keil\MCB4300\DualCore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the link below you can download the LPCOpen package which also includes Dual Core examples:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/downloads/en/software/lpcopen_2_20_keil_iar_nxp_lpcxpresso_4337.zip" title="https://www.nxp.com/downloads/en/software/lpcopen_2_20_keil_iar_nxp_lpcxpresso_4337.zip"&gt;https://www.nxp.com/downloads/en/software/lpcopen_2_20_keil_iar_nxp_lpcxpresso_4337.zip&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general you can solve the dual core setup in an IDE tool in more than one way. With Keil µVision there are already 3 possible setups (see short presentation).&lt;/P&gt;&lt;P&gt;If you tell me which LPC4337 board and which Keil tool version you use, I can &lt;STRONG&gt;maybe&lt;/STRONG&gt; send you a working example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bernhard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 14:37:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715805#M28917</guid>
      <dc:creator>bernhardfink</dc:creator>
      <dc:date>2018-02-06T14:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715806#M28918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&amp;nbsp;Bernhard&lt;/P&gt;&lt;P&gt;Thanks for your answer, I have seen the sample projects for the Dual core examples, all of them seems to work with the M0 running the Code from RAM, I have these tools, my board is a custom made board and It's MCU is LPC4337, with no other external memories like &lt;SPAN&gt;FLASH&amp;nbsp;&lt;/SPAN&gt;or RAM , Also I want both cores to run from the internal&amp;nbsp;FLASH&amp;nbsp;banks, M4 from &lt;SPAN&gt;FLASH&lt;/SPAN&gt; bank A and M0 from the &lt;SPAN&gt;FLASH&amp;nbsp;&lt;/SPAN&gt;bank B, could you please send a working simple project that both cores boot and run the code from the &lt;SPAN&gt;FLASH&lt;/SPAN&gt;,as the internal SRAM is limited and my app is bigger than the internal RAM that could hold, so I need it to be done in separate FLASH banks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Keil version is 5.24.2.0 and I use J-link,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2018 15:07:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715806#M28918</guid>
      <dc:creator>aliasadzadeh</dc:creator>
      <dc:date>2018-02-12T15:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715807#M28919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Would you please share a simple example, I'm stocked!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2018 12:58:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715807#M28919</guid>
      <dc:creator>aliasadzadeh</dc:creator>
      <dc:date>2018-02-26T12:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715808#M28920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/bernhardfink"&gt;bernhardfink&lt;/A&gt;‌, do you have a simple example as the required by&amp;nbsp;Ali Asadzadeh? I'm stuck in the same situation and I think that most of the problems are related to&amp;nbsp;the project configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exactly same MCU (LPC4337) but in a custom board. At the moment, I'm using the M4 for all operations but I would like to port all the IO operations to M0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the pptx file, it was really informative because I couldn't find any guide or tutorial to keep a dual core application from scratch running :/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 19:11:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715808#M28920</guid>
      <dc:creator>fernandotheirs</dc:creator>
      <dc:date>2018-04-12T19:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715809#M28921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this parallel thread I attached an example:&amp;nbsp; &lt;A href="https://community.nxp.com/thread/469579"&gt;https://community.nxp.com/thread/469579&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bernhard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 08:09:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715809#M28921</guid>
      <dc:creator>bernhardfink</dc:creator>
      <dc:date>2018-04-13T08:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715810#M28922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bernhard! Thanks for your help. I will reply in the other post to unify all the information. I'm having some problems to set breakpoint in M0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 13:49:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715810#M28922</guid>
      <dc:creator>fernandotheirs</dc:creator>
      <dc:date>2018-04-13T13:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: LPC4337 Dual core example, M0 run from Flash bankB problem</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715811#M28923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The breakpoint problem is solved there:&amp;nbsp; &lt;A href="https://community.nxp.com/thread/458795?ru=316704&amp;amp;sr=stream"&gt;https://community.nxp.com/thread/458795?ru=316704&amp;amp;sr=stream&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bernhard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 09:34:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC4337-Dual-core-example-M0-run-from-Flash-bankB-problem/m-p/715811#M28923</guid>
      <dc:creator>bernhardfink</dc:creator>
      <dc:date>2018-04-20T09:34:35Z</dc:date>
    </item>
  </channel>
</rss>

