<?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: S32K358 multicore single elf project in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32K358-multicore-single-elf-project/m-p/2328131#M57179</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/184101"&gt;@liyongfeng&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I do not see the initialization for the second core inside the project for core0. Can you share it? It should look something like this:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;void Start_Core(void)
{
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PCONF &amp;amp;= ~(1 &amp;lt;&amp;lt; MC_ME_PRTN0_CORE4_PCONF_CCE_SHIFT);
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PUPD = 1;
    IP_MC_ME-&amp;gt;CTL_KEY = 0x5AF0;
    IP_MC_ME-&amp;gt;CTL_KEY = 0xA50F;
    while ((IP_MC_ME-&amp;gt;PRTN0_CORE4_STAT &amp;amp; MC_ME_PRTN0_CORE4_STAT_CCS_MASK) == 1)
        ;
    IP_MC_ME-&amp;gt;PRTN0_CORE4_ADDR = (uint32)&amp;amp;__CORE2_VTOR;
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PCONF |= (1 &amp;lt;&amp;lt; MC_ME_PRTN0_CORE4_PCONF_CCE_SHIFT);
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PUPD = 1;
    IP_MC_ME-&amp;gt;CTL_KEY = 0x5AF0;
    IP_MC_ME-&amp;gt;CTL_KEY = 0xA50F;
    while ((IP_MC_ME-&amp;gt;PRTN0_CORE4_STAT &amp;amp; MC_ME_PRTN0_CORE4_STAT_CCS_MASK) == 0)
        ;
}&lt;/LI-CODE&gt;
&lt;P&gt;Do you have &lt;STRONG&gt;CM7_1_ENABLE&lt;/STRONG&gt; symbol inside project settings?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CM7_1_ENABLE.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/378606i340290C27EE7FAF0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CM7_1_ENABLE.png" alt="CM7_1_ENABLE.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I've also sent you a private message for an example routine and training presentation for multicore debugging and single elf.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
    <pubDate>Fri, 06 Mar 2026 22:08:23 GMT</pubDate>
    <dc:creator>Julián_AragónM</dc:creator>
    <dc:date>2026-03-06T22:08:23Z</dc:date>
    <item>
      <title>S32K358 multicore single elf project</title>
      <link>https://community.nxp.com/t5/S32K/S32K358-multicore-single-elf-project/m-p/2327885#M57169</link>
      <description>&lt;P&gt;I using S32K358 dual-core setup to generate single ELF file via Make, a download error occurs for Core2 code in TRACE32. This analysis aims to identify whether the root cause lies in the code, linker script (LD file), or TRACE32 script (CMM file).&lt;/P&gt;&lt;P&gt;RTD ：SW32K3_S32M27x_RTD_R21-11_6.0.0_QLP04&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 10:45:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K358-multicore-single-elf-project/m-p/2327885#M57169</guid>
      <dc:creator>liyongfeng</dc:creator>
      <dc:date>2026-03-06T10:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: S32K358 multicore single elf project</title>
      <link>https://community.nxp.com/t5/S32K/S32K358-multicore-single-elf-project/m-p/2328131#M57179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/184101"&gt;@liyongfeng&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I do not see the initialization for the second core inside the project for core0. Can you share it? It should look something like this:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;void Start_Core(void)
{
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PCONF &amp;amp;= ~(1 &amp;lt;&amp;lt; MC_ME_PRTN0_CORE4_PCONF_CCE_SHIFT);
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PUPD = 1;
    IP_MC_ME-&amp;gt;CTL_KEY = 0x5AF0;
    IP_MC_ME-&amp;gt;CTL_KEY = 0xA50F;
    while ((IP_MC_ME-&amp;gt;PRTN0_CORE4_STAT &amp;amp; MC_ME_PRTN0_CORE4_STAT_CCS_MASK) == 1)
        ;
    IP_MC_ME-&amp;gt;PRTN0_CORE4_ADDR = (uint32)&amp;amp;__CORE2_VTOR;
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PCONF |= (1 &amp;lt;&amp;lt; MC_ME_PRTN0_CORE4_PCONF_CCE_SHIFT);
    IP_MC_ME-&amp;gt;PRTN0_CORE4_PUPD = 1;
    IP_MC_ME-&amp;gt;CTL_KEY = 0x5AF0;
    IP_MC_ME-&amp;gt;CTL_KEY = 0xA50F;
    while ((IP_MC_ME-&amp;gt;PRTN0_CORE4_STAT &amp;amp; MC_ME_PRTN0_CORE4_STAT_CCS_MASK) == 0)
        ;
}&lt;/LI-CODE&gt;
&lt;P&gt;Do you have &lt;STRONG&gt;CM7_1_ENABLE&lt;/STRONG&gt; symbol inside project settings?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CM7_1_ENABLE.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/378606i340290C27EE7FAF0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CM7_1_ENABLE.png" alt="CM7_1_ENABLE.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I've also sent you a private message for an example routine and training presentation for multicore debugging and single elf.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 22:08:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K358-multicore-single-elf-project/m-p/2328131#M57179</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2026-03-06T22:08:23Z</dc:date>
    </item>
  </channel>
</rss>

