<?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 K64 bootloader example for MCUXpresso ? in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784585#M47804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently working on a bootloader for a K64 board.&lt;/P&gt;&lt;P&gt;I'm nearly there, the flashing seems correct but I'm stuck when I have to launch the user application I just flashed. I tried a few technics that just reset my MCU back to the beggining of the bootloader program.&lt;/P&gt;&lt;P&gt;I saw there was an bootloader example for KDSv3.2 but it unfortunately doesn't compile on MCUXpresso. &lt;A href="https://community.nxp.com/docs/DOC-333740"&gt;Kinetis Bootloader for FRDM-K64&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Does a MCUXpresso ready version of this bootloader (or any other one for the K64) exists so I can test it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Léo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Sep 2018 14:45:04 GMT</pubDate>
    <dc:creator>leo_thirifays</dc:creator>
    <dc:date>2018-09-03T14:45:04Z</dc:date>
    <item>
      <title>K64 bootloader example for MCUXpresso ?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784585#M47804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently working on a bootloader for a K64 board.&lt;/P&gt;&lt;P&gt;I'm nearly there, the flashing seems correct but I'm stuck when I have to launch the user application I just flashed. I tried a few technics that just reset my MCU back to the beggining of the bootloader program.&lt;/P&gt;&lt;P&gt;I saw there was an bootloader example for KDSv3.2 but it unfortunately doesn't compile on MCUXpresso. &lt;A href="https://community.nxp.com/docs/DOC-333740"&gt;Kinetis Bootloader for FRDM-K64&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Does a MCUXpresso ready version of this bootloader (or any other one for the K64) exists so I can test it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Léo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2018 14:45:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784585#M47804</guid>
      <dc:creator>leo_thirifays</dc:creator>
      <dc:date>2018-09-03T14:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: K64 bootloader example for MCUXpresso ?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784586#M47805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Léo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the uTasker K64 serial loader (Kboot, USB, UART, SD-Card, Memory Stick, I2C, Ethernet) as reference:&lt;BR /&gt;&lt;SPAN&gt;Serial Loader: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fdocs%2FuTasker%2FuTaskerSerialLoader.pdf" rel="nofollow" target="_blank"&gt;http://www.utasker.com/docs/uTasker/uTaskerSerialLoader.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works with KDS, MCUXpresso, Codewarrior, Rowley, IAR, Keil, Green Hills, Atollic, GCC, Visual Studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The jump code for the K64 is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;// Allow the jump to a foreign application as if it were a reset (load SP and PC)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;//&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;extern void start_application(unsigned long app_link_location)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;&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;&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;&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // cortex-M3/M4/M7 assembler code&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; asm(" ldr sp, [r0,#0]");&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // load the stack pointer value from the program's reset vector&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; asm(" ldr pc, [r0,#4]");&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // load the program counter value from the program's reset vector to cause operation to continue from there&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12px; font-family: courier new, courier, monospace;"&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;and there is a guide to application compatibility in the appendix of its user's guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is free open source on GitHub or there is a supported version for professionals, and operates on virtually all Kinetis parts without any porting requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;BR /&gt;Kinetis K64:&lt;BR /&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FFRDM-K64F.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/FRDM-K64F.html&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FTWR-K64F120M.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/TWR-K64F120M.html&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FTEENSY_3.5.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/TEENSY_3.5.html&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FHexiwear-K64F.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/Hexiwear-K64F.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 09:33:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784586#M47805</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2018-09-04T09:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: K64 bootloader example for MCUXpresso ?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784587#M47806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Léo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new release of the SDK will come with a example of Flash bootloader. This new version will be release sometime during this month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 14:41:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784587#M47806</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-09-04T14:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: K64 bootloader example for MCUXpresso ?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784588#M47807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Léo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new version of the SDK is out now. When you download it please select mcu-boot in the section Add software component.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/69723i17F49B57A6313BB2/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 15:30:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K64-bootloader-example-for-MCUXpresso/m-p/784588#M47807</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-09-25T15:30:03Z</dc:date>
    </item>
  </channel>
</rss>

