<?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: Jumping to RAM and executing function in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1799679#M55303</link>
    <description>&lt;P&gt;Great, thank you Paval. Here's what I did:&amp;nbsp;in the memmap linker file I created a new section:&lt;/P&gt;&lt;DIV&gt;MEMORY&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ramfunction (rwx) : ORIGIN = 0x20043000, LENGTH = 0x01000&amp;nbsp; /* 4K bytes for storing functions */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;__ramfunction_start__ = ORIGIN(ramfunction);&lt;BR /&gt;__ramfunction_length__ = LENGTH(ramfunction);&lt;BR /&gt;__ramfunction_end__ = __ramfunction_start__ + __ramfunction_length__; /* 4KB */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The map file says all is well:&lt;/DIV&gt;&lt;DIV&gt;0x0000000020043000 __ramfunction_start__ = ORIGIN (ramfunction)&lt;BR /&gt;0x0000000000001000 __ramfunction_length__ = LENGTH (ramfunction)&lt;BR /&gt;0x0000000020044000 __ramfunction_end__ = (__ramfunction_start__ + __ramfunction_length__)&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;.ramfunction_sect&lt;BR /&gt;0x0000000020043000 0x1c&lt;BR /&gt;*(.ramfunction_sect)&lt;BR /&gt;.ramfunction_sect&lt;BR /&gt;0x0000000020043000 0x1c CMakeFiles/.../myfile.c.obj&lt;BR /&gt;0x0000000020043000 ramFunction&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;Created a simple function just to have a bit of body:&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;__attribute__&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;section&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;".ramfunction_sect"&lt;/SPAN&gt;&lt;SPAN&gt;))) &lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt; &lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;uint32_t&lt;/SPAN&gt; &lt;SPAN&gt;cnt&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;cnt&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&amp;nbsp;50000&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;cnt&lt;/SPAN&gt;&lt;SPAN&gt;++&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;And then I call it from (flash) code to that function:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LOG_INFO&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"Leaving flash area..."&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LOG_INFO&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"++ramFunction: 0x&lt;/SPAN&gt;&lt;SPAN&gt;%08x&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;func_ptr&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;func_ptr&lt;/SPAN&gt;&lt;SPAN&gt;();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// We should never get here...&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;That results in this output:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[ INFO] (managestoragespace.c)(handleRequest @258) : Leaving flash area...&lt;BR /&gt;[ INFO] (managestoragespace.c)(handleRequest @259) : ++ramFunction: 0x20043001&lt;BR /&gt;[ERROR] ( startup.c)( BusFault_Handler @105) : Busfault! f0002&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The datasheet says I'm in SRAM4, and the function is not accessing anything outside that bank (at this point):&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ED8500_0-1706776204641.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/261277iDC641D66E71B70D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ED8500_0-1706776204641.png" alt="ED8500_0-1706776204641.png" /&gt;&lt;/span&gt;&lt;P&gt;&lt;SPAN&gt;FYI: toolchain is gcc and cmake, I'm not using MCUXpresso. But if there would be some kind of example somewhere, encapsulated in a MCUXpresso project, that would be neat.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 01 Feb 2024 08:34:26 GMT</pubDate>
    <dc:creator>ED8500</dc:creator>
    <dc:date>2024-02-01T08:34:26Z</dc:date>
    <item>
      <title>Jumping to RAM and executing function</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1798855#M55294</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Running on a&amp;nbsp;&lt;SPAN&gt;LPC55S69JBD100. The application is running fine, but as soon as I want to jump to a function residing in RAM I get a bus fault.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The RAM section is created in the linker file, the function resides in that section says the .map file, and checking the function address at runtime is indeed in that RAM section. Defined a function pointer to that function but as soon as code wants to jump to that address, I get:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;[ERROR] (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; startup.c)(&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; BusFault_Handler @105) : Busfault! f0002&lt;/P&gt;&lt;P&gt;So I'm missing something or doing things wrong.&lt;/P&gt;&lt;P&gt;Just to keep it simple, the function in RAM only sets a variable, no more than that. So that I can focus on the jump to a RAM function.&lt;/P&gt;&lt;P&gt;Would there be any example in the SDK? Already searched for it, but couldn't find something related...&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 15:37:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1798855#M55294</guid>
      <dc:creator>ED8500</dc:creator>
      <dc:date>2024-01-31T15:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Jumping to RAM and executing function</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1799271#M55298</link>
      <description>&lt;P&gt;Hello, my name is Pavel, and I will be supporting your case, I need more information, what is the location you need to get access? could you elaborate further about it? consider using an image if necessary.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 23:45:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1799271#M55298</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-01-31T23:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Jumping to RAM and executing function</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1799679#M55303</link>
      <description>&lt;P&gt;Great, thank you Paval. Here's what I did:&amp;nbsp;in the memmap linker file I created a new section:&lt;/P&gt;&lt;DIV&gt;MEMORY&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ramfunction (rwx) : ORIGIN = 0x20043000, LENGTH = 0x01000&amp;nbsp; /* 4K bytes for storing functions */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;__ramfunction_start__ = ORIGIN(ramfunction);&lt;BR /&gt;__ramfunction_length__ = LENGTH(ramfunction);&lt;BR /&gt;__ramfunction_end__ = __ramfunction_start__ + __ramfunction_length__; /* 4KB */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The map file says all is well:&lt;/DIV&gt;&lt;DIV&gt;0x0000000020043000 __ramfunction_start__ = ORIGIN (ramfunction)&lt;BR /&gt;0x0000000000001000 __ramfunction_length__ = LENGTH (ramfunction)&lt;BR /&gt;0x0000000020044000 __ramfunction_end__ = (__ramfunction_start__ + __ramfunction_length__)&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;.ramfunction_sect&lt;BR /&gt;0x0000000020043000 0x1c&lt;BR /&gt;*(.ramfunction_sect)&lt;BR /&gt;.ramfunction_sect&lt;BR /&gt;0x0000000020043000 0x1c CMakeFiles/.../myfile.c.obj&lt;BR /&gt;0x0000000020043000 ramFunction&lt;/DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;Created a simple function just to have a bit of body:&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;__attribute__&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;section&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;".ramfunction_sect"&lt;/SPAN&gt;&lt;SPAN&gt;))) &lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt; &lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;uint32_t&lt;/SPAN&gt; &lt;SPAN&gt;cnt&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;cnt&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&amp;nbsp;50000&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;cnt&lt;/SPAN&gt;&lt;SPAN&gt;++&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;And then I call it from (flash) code to that function:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LOG_INFO&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"Leaving flash area..."&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LOG_INFO&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"++ramFunction: 0x&lt;/SPAN&gt;&lt;SPAN&gt;%08x&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;func_ptr&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ramFunction&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;func_ptr&lt;/SPAN&gt;&lt;SPAN&gt;();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// We should never get here...&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;That results in this output:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[ INFO] (managestoragespace.c)(handleRequest @258) : Leaving flash area...&lt;BR /&gt;[ INFO] (managestoragespace.c)(handleRequest @259) : ++ramFunction: 0x20043001&lt;BR /&gt;[ERROR] ( startup.c)( BusFault_Handler @105) : Busfault! f0002&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The datasheet says I'm in SRAM4, and the function is not accessing anything outside that bank (at this point):&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ED8500_0-1706776204641.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/261277iDC641D66E71B70D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ED8500_0-1706776204641.png" alt="ED8500_0-1706776204641.png" /&gt;&lt;/span&gt;&lt;P&gt;&lt;SPAN&gt;FYI: toolchain is gcc and cmake, I'm not using MCUXpresso. But if there would be some kind of example somewhere, encapsulated in a MCUXpresso project, that would be neat.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 01 Feb 2024 08:34:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1799679#M55303</guid>
      <dc:creator>ED8500</dc:creator>
      <dc:date>2024-02-01T08:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Jumping to RAM and executing function</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1800020#M55308</link>
      <description>&lt;P&gt;&lt;SPAN&gt;First, I don't know the LPC55S69 particularly well, nor do I have an eval board with this MCU.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But I suppose you have checked the MCU reference manual, and confirmed that the RAM section in question is really connected to the I-Bus, haven't you ?&lt;BR /&gt;I know of MCUs were some RAM sections are connected to I- and D-Bus, and others are only to the D-Bus.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 15:03:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Jumping-to-RAM-and-executing-function/m-p/1800020#M55308</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2024-02-01T15:03:49Z</dc:date>
    </item>
  </channel>
</rss>

