<?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 S12 All-Access Bootloader in S12 / MagniV Microcontrollers</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1469737#M18683</link>
    <description>&lt;P&gt;Iam using&amp;nbsp;S12 All-Access Bootloader in my project(AN3275).&lt;/P&gt;&lt;P&gt;I editted the application program .prm file to&amp;nbsp;ROM_C000 = READ_ONLY 0xC000 TO 0xEFFD;&lt;/P&gt;&lt;P&gt;With this the bootloader was working fine and able to load the application.&lt;/P&gt;&lt;P&gt;But now I had some modifications in the application project and now the size has been increased.&lt;/P&gt;&lt;P&gt;And so with the previously mention edit in .prm file, error is coming in my application project and so I increased&amp;nbsp;ROM_C000 space. But now when I run bootloader application and load the .s19 file Error: Trying to program into bootloader section.&lt;/P&gt;&lt;P&gt;So how can I edit bootloader program inorder to accommodate my application program into the memory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jun 2022 06:19:28 GMT</pubDate>
    <dc:creator>Sharon_Royal2015</dc:creator>
    <dc:date>2022-06-07T06:19:28Z</dc:date>
    <item>
      <title>S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1469737#M18683</link>
      <description>&lt;P&gt;Iam using&amp;nbsp;S12 All-Access Bootloader in my project(AN3275).&lt;/P&gt;&lt;P&gt;I editted the application program .prm file to&amp;nbsp;ROM_C000 = READ_ONLY 0xC000 TO 0xEFFD;&lt;/P&gt;&lt;P&gt;With this the bootloader was working fine and able to load the application.&lt;/P&gt;&lt;P&gt;But now I had some modifications in the application project and now the size has been increased.&lt;/P&gt;&lt;P&gt;And so with the previously mention edit in .prm file, error is coming in my application project and so I increased&amp;nbsp;ROM_C000 space. But now when I run bootloader application and load the .s19 file Error: Trying to program into bootloader section.&lt;/P&gt;&lt;P&gt;So how can I edit bootloader program inorder to accommodate my application program into the memory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 06:19:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1469737#M18683</guid>
      <dc:creator>Sharon_Royal2015</dc:creator>
      <dc:date>2022-06-07T06:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1470404#M18684</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are not allowed to increase space C000 - EFFD because you will access the bootloader space.&lt;/P&gt;
&lt;P&gt;Have you been thinking to use additional near flash 4000-7FFF if you need more near access space?&lt;/P&gt;
&lt;P&gt;The procedure is written in the prm file.&lt;/P&gt;
&lt;P&gt;However...&lt;/P&gt;
&lt;P&gt;in SEGMENTS enable&lt;/P&gt;
&lt;P&gt;ROM_4000 = READ_ONLY 0x4000 TO 0x7FFF;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;in PLACEMENT change:&lt;/P&gt;
&lt;P&gt;INTO ROM_C000/*, ROM_4000*/;&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;INTO ROM_C000, ROM_4000;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Then&lt;BR /&gt;press Alt F7 (or go to compiler settings)-&amp;gt; select Compiler for HC12 in Target settings panel -&amp;gt; write: -Onb=b into Comand line arguments&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Ladislav&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 06:17:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1470404#M18684</guid>
      <dc:creator>lama</dc:creator>
      <dc:date>2022-06-08T06:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1471249#M18686</link>
      <description>&lt;P&gt;Hi Ladislav,&lt;/P&gt;&lt;P&gt;Following your suggestion I made all those changes and changed the command line arguments.&lt;/P&gt;&lt;P&gt;But when building the project, link error are coming.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharon&lt;/P&gt;&lt;P&gt;I have attached the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 06:36:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1471249#M18686</guid>
      <dc:creator>Sharon_Royal2015</dc:creator>
      <dc:date>2022-06-09T06:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1472749#M18688</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is hard to say what to do. I'll talk about it also with our CW guy when he is a work.&lt;/P&gt;&lt;P&gt;The easiest way is to get project, if possible. Or, some artificial project which highlights the issue.&lt;/P&gt;&lt;P&gt;If you see the project as confidential you can send it privately or you can create a request to a support ticket at our support pages &lt;A href="https://www.nxp.com/" target="_blank"&gt;https://www.nxp.com/&lt;/A&gt;&amp;nbsp;&amp;nbsp; -&amp;gt; support -&amp;gt; support tickets&lt;BR /&gt;and introduce it ... to Ladislav...&lt;BR /&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ladislav&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 08:14:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1472749#M18688</guid>
      <dc:creator>lama</dc:creator>
      <dc:date>2022-06-13T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1472819#M18689</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;it seems that the compiler memory model option -Mx does not match with ansi library used.&lt;/P&gt;
&lt;P&gt;In case you use small memory model (-Ms) please use library ansisi.lib (attached are all available versions) instead of ansib.lib :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stanish_0-1655112898785.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/183102iDD757C39CB67BAA9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stanish_0-1655112898785.png" alt="stanish_0-1655112898785.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps.&lt;/P&gt;
&lt;P&gt;Stan&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 10:05:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1472819#M18689</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2022-06-13T10:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1473347#M18690</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Instead of&amp;nbsp;&lt;SPAN&gt;ansib.lib I added&amp;nbsp;ansisi.lib, but still link error exists.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please check the attachment.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sharon&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 05:07:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1473347#M18690</guid>
      <dc:creator>Sharon_Royal2015</dc:creator>
      <dc:date>2022-06-14T05:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1474301#M18691</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I apologize about the confusion - please use &lt;EM&gt;&lt;STRONG&gt;ansis.lib&lt;/STRONG&gt; &lt;/EM&gt;instad since ansisi.lib -&amp;gt; is is missing floating point support. It is the reason is why it is imposible to link the poject.&lt;/P&gt;
&lt;P&gt;Stan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2022 08:43:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1474301#M18691</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2022-06-15T08:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1474362#M18692</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Now the project is build successfully.&lt;/P&gt;&lt;P&gt;But after flashing to board, my project is not loading.&lt;/P&gt;&lt;P&gt;Meanwhile I have a doubt, while enabling&amp;nbsp;&lt;/P&gt;&lt;P&gt;ROM_4000 = READ_ONLY 0x4000 TO 0x7FFF;&lt;/P&gt;&lt;P&gt;and changing in PLACEMENT&amp;nbsp;&lt;/P&gt;&lt;P&gt;INTO ROM_C000/*, ROM_4000*/;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;INTO ROM_C000, ROM_4000;&lt;/P&gt;&lt;P&gt;is it necessary to change the command line arguments to &lt;SPAN&gt;&amp;nbsp;-Onb=b&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sharon&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2022 10:06:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1474362#M18692</guid>
      <dc:creator>Sharon_Royal2015</dc:creator>
      <dc:date>2022-06-15T10:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: S12 All-Access Bootloader</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1713876#M19415</link>
      <description>&lt;P&gt;Hi Sharon, I have read that you are working with the S12 All-Access Bootloader. Can you please tell me where you got this bootloader from or in which program it is implemented?&lt;/P&gt;&lt;P&gt;Thank you, Martin.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 08:33:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12-All-Access-Bootloader/m-p/1713876#M19415</guid>
      <dc:creator>Martytec</dc:creator>
      <dc:date>2023-08-30T08:33:41Z</dc:date>
    </item>
  </channel>
</rss>

