<?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: How can I put my callback function into ITCM memory ? S32K344 in S32K</title>
    <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588774#M20246</link>
    <description>&lt;P&gt;Good morning &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; .&lt;/P&gt;&lt;P&gt;I need also to move my vector table to ITCM memory in order to avoid cache maintainance as mentioned in the chapter 5.4 at S32K344 RM.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_0-1674812884443.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208542i2D6548C85872FAC7/image-size/large?v=v2&amp;amp;px=999" role="button" title="kyf_0-1674812884443.png" alt="kyf_0-1674812884443.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Has this to be done also at the startup code ? If yes how can I do this? Can you please provide me any assistance with this (documentation or any resource regarding this) ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2023 09:49:09 GMT</pubDate>
    <dc:creator>kyf</dc:creator>
    <dc:date>2023-01-27T09:49:09Z</dc:date>
    <item>
      <title>How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1586679#M20178</link>
      <description>&lt;P&gt;Hello NXP team,&lt;/P&gt;&lt;P&gt;I want to place my ISR callback function to ITCM memory of S32K344 MCU.&amp;nbsp; I've used the __attribute__ directive in order to put myISRfunction to ITCM memory.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_0-1674486735906.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208161i62472098CD31191A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_0-1674486735906.png" alt="kyf_0-1674486735906.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But after checking the .map file after the build I've noticed that my function is put to flash memory instead of itcm.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_1-1674486891794.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208162i86004FFA4BF3A426/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_1-1674486891794.png" alt="kyf_1-1674486891794.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Is there any example of how to use the itcm memory ?&lt;/P&gt;&lt;P&gt;2. Can you provide me with any documentation regarding this matter except the reference manual ? Is there any ppt file regarding itcm memory ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 15:16:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1586679#M20178</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-01-23T15:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1587328#M20202</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201680"&gt;@kyf&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the problem is that int_itcm is defined in MEMORY section in the linker file but there's no further definition in SECTIONS. You need to add something like this to SECTIONS:&lt;/P&gt;
&lt;P&gt;.int_itcm_code :&lt;BR /&gt;{&lt;BR /&gt;KEEP(*(int_itcm_code))&lt;BR /&gt;} &amp;gt; int_itcm&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then:&lt;/P&gt;
&lt;P&gt;__attribute__ ((section(".int_itcm_code")))&lt;BR /&gt;void test(void)&lt;BR /&gt;{&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;Now the function will be forced to itcm.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32-Design-Studio-Knowledge-Base/HOWTO-Place-custom-data-into-flash-memory/ta-p/1109178" target="_blank"&gt;https://community.nxp.com/t5/S32-Design-Studio-Knowledge-Base/HOWTO-Place-custom-data-into-flash-memory/ta-p/1109178&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 20:01:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1587328#M20202</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2023-01-24T20:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1587599#M20213</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; . Thank you for your quick response to my question.&lt;/P&gt;&lt;P&gt;I've tried your suggestion,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_0-1674644772741.png" style="width: 200px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208315i85748335EF5BDF0F/image-size/small?v=v2&amp;amp;px=200" role="button" title="kyf_0-1674644772741.png" alt="kyf_0-1674644772741.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And I've declared my function with the attribute directive.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_6-1674645752933.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208328iD2E843E979F87A65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_6-1674645752933.png" alt="kyf_6-1674645752933.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I've seen in the .map file that my functions are stored in the ITCM memory section.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_2-1674645343818.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208320iD97A73EC090D6A5C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_2-1674645343818.png" alt="kyf_2-1674645343818.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But when I run my program I get an hard fault error. And the message that I get from the debugger is this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_4-1674645633301.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208326iDFD6B1FB0F5C60C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_4-1674645633301.png" alt="kyf_4-1674645633301.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My ISR callback is the first function running inside EMIOS0_4_IRQ() ISR.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_3-1674645605122.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208325i3B928D45FF82968E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kyf_3-1674645605122.png" alt="kyf_3-1674645605122.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp; &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_5-1674645697490.png" style="width: 496px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208327iF1985ADCCEBB2E03/image-dimensions/496x269?v=v2" width="496" height="269" role="button" title="kyf_5-1674645697490.png" alt="kyf_5-1674645697490.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've checked the memory that my function supposed to be stored and there is nothing there. The whole ITCM memory section is set to 0 (as it is after the startup code initialization).&lt;/P&gt;&lt;P&gt;Do I have to do anything else in order for my code to run inside the ITCM?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 11:25:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1587599#M20213</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-01-25T11:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588259#M20230</link>
      <description>&lt;P&gt;Aah, OK, sorry, that's solution for flash, not for RAM / ITCM. When using this way, the code is compiled for these addresses, but it's not copied to the RAM. It's either necessary to copy the code manually or to force startup code via linker file to do that automatically - which is better option, of course. I don't know this from top of my head, let me check this later today or tomorrow.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 10:54:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588259#M20230</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2023-01-26T10:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588774#M20246</link>
      <description>&lt;P&gt;Good morning &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; .&lt;/P&gt;&lt;P&gt;I need also to move my vector table to ITCM memory in order to avoid cache maintainance as mentioned in the chapter 5.4 at S32K344 RM.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_0-1674812884443.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208542i2D6548C85872FAC7/image-size/large?v=v2&amp;amp;px=999" role="button" title="kyf_0-1674812884443.png" alt="kyf_0-1674812884443.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Has this to be done also at the startup code ? If yes how can I do this? Can you please provide me any assistance with this (documentation or any resource regarding this) ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 09:49:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588774#M20246</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-01-27T09:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588815#M20248</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201680"&gt;@kyf&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;attached is working example.&lt;/P&gt;
&lt;P&gt;For more details about linker syntax, see please this document:&lt;/P&gt;
&lt;P&gt;c:\NXP\S32DS.3.4\S32DS\build_tools\gcc_v10.2\gcc-10.2-arm32-eabi\arm-none-eabi\share\docs\pdf\ld.pdf&lt;/P&gt;
&lt;P&gt;What is necessary to do:&lt;/P&gt;
&lt;P&gt;Define section like this in the linker file. You can use .shareable_data as a template for itcm. "AT" directive is important.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_0-1674817906402.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208546i66C690F338FA80C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_0-1674817906402.png" alt="lukaszadrapa_0-1674817906402.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Second step - define the RAM and ROM addresses which will be used for copy-down:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_1-1674817983828.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208547i7C8DA6628DC63D17/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_1-1674817983828.png" alt="lukaszadrapa_1-1674817983828.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Next step - update the init_table. Add one more entry like this and increase the entries count:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_2-1674818061791.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208548i43FE0A103A823D55/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_2-1674818061791.png" alt="lukaszadrapa_2-1674818061791.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then use the attribute for some function:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_3-1674818094736.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208549i434DDD345CC4107A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_3-1674818094736.png" alt="lukaszadrapa_3-1674818094736.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And now it works:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_4-1674818126698.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/208550i8309972F1772F140/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_4-1674818126698.png" alt="lukaszadrapa_4-1674818126698.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will the same for interrupt vector table. By default, it's in normal RAM. Just remove it from the RAM and add it to the ITCM.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 11:20:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588815#M20248</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2023-01-27T11:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588847#M20249</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; I will test your suggestion and I will be back with feedback !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 12:06:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1588847#M20249</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-01-27T12:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1592280#M20383</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; again !&lt;/P&gt;&lt;P&gt;I've tested what you've suggested into my code and the error that I'm getting is this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kyf_0-1675270851091.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/209178iCDF092D1F570C461/image-size/large?v=v2&amp;amp;px=999" role="button" title="kyf_0-1675270851091.png" alt="kyf_0-1675270851091.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Have you ever anticipated this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm uploading the linker file and my startup. I've confirmed that there are no diffs with the one that you've used with winmerge software.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 11:37:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1592280#M20383</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-02-02T11:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1594598#M20482</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201680"&gt;@kyf&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;I can't see a reason for this. Do you have whole project which could be shared with me to replicate it?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 09:45:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1594598#M20482</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2023-02-07T09:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1596526#M20545</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; .&lt;/P&gt;&lt;P&gt;Does anything comes to your mind that can affect the build at that stage ? If I remove those sections from the linker file and from the startup_cm7 file my project compiles as it should.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 11:00:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1596526#M20545</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-02-09T11:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1597165#M20567</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201680"&gt;@kyf&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the only idea I have is that some "start" or "end" address has wrong value. But I can't see that in your linker/startup. Just shoot from the hip - I guess you tried to clean the project, right?&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 08:47:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1597165#M20567</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2023-02-10T08:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: How can I put my callback function into ITCM memory ? S32K344</title>
      <link>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1597232#M20572</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/37795"&gt;@lukaszadrapa&lt;/a&gt; .&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;the only idea I have is that some "start" or "end" address has wrong value. But I can't see that in your linker/startup.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I know, I've thoroughly searched for any mistype or something that could possibly gone wrong but everything seems to be fine.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;I guess you tried to clean the project, right?&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yeah, I've done it and I've tried changing optimization level also, but it did not workout.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm starting to believe that something else not related with the linker is causing the problem. Something that runs before the linker but I'm not familiar with all the commands and the utilities that run in order to build the project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;kyf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 09:56:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/How-can-I-put-my-callback-function-into-ITCM-memory-S32K344/m-p/1597232#M20572</guid>
      <dc:creator>kyf</dc:creator>
      <dc:date>2023-02-10T09:56:45Z</dc:date>
    </item>
  </channel>
</rss>

