<?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: FRDM-KL25Z uTasker USB Bootloader application program in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370460#M19201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;Wonderful work, tested on WIN8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2014 08:27:27 GMT</pubDate>
    <dc:creator>jerryfavero</dc:creator>
    <dc:date>2014-12-09T08:27:27Z</dc:date>
    <item>
      <title>FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370448#M19189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm testing the FRDM-KL25Z board. I flash it with USB Bootloader uTaskerSerialLoader_FRDM-KL25Z.srec (download from utTasker site) .&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Similarly as FRDM-K20D50M &lt;A _jive_internal="true" data-containerid="2019" data-containertype="14" data-objectid="334562" data-objecttype="1" href="https://community.nxp.com/thread/334562"&gt;FRDM-K20D50M uTasker USB Bootloader application program&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;in an application program :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;1) I have disabled "Generate Linker file" in Build Option in PE, and edit it manually as :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MEMORY {&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_interrupts&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RX):&amp;nbsp; ORIGIN = 0x00008080, LENGTH&amp;nbsp;&amp;nbsp; = 0x000000F8&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_cfmprotrom&amp;nbsp; (RX) :&amp;nbsp; ORIGIN = 0x00008400, LENGTH&amp;nbsp;&amp;nbsp; = 0x00000010&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_text&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; (RX) :&amp;nbsp; ORIGIN = 0x00008410, LENGTH&amp;nbsp;&amp;nbsp; = 0x00017BF0&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RW):&amp;nbsp; ORIGIN = 0x1FFFF000, LENGTH&amp;nbsp; = 0x00004000&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;2) In "User code after PE Initializzation" in &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Build Option I have added , that is visible after building in CPU.c file:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;//:::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;/P&gt;&lt;P&gt;&amp;nbsp; // USER CODE AFTER PE INITIALIZATION&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *pdst ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *psrc;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint16_t&amp;nbsp; i ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // Copy Application Stored Interrupt Vector table to RAM&lt;/P&gt;&lt;P&gt;&amp;nbsp; pdst=(uint32_t*) (0x1FFFF000 );&lt;/P&gt;&lt;P&gt;&amp;nbsp; psrc=(uint32_t*)( 0x8080 );&lt;/P&gt;&lt;P&gt;&amp;nbsp; for (i=0;i&amp;lt;0xF8;i++,pdst++,psrc++)&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (*pdst) = (*psrc);&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; // Then redirect the vector table to RAM by changing the SCB_VTOR like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp; // Redirect the vector table to the new copy in RAM&lt;/P&gt;&lt;P&gt;&amp;nbsp; SCB_VTOR = (uint32_t)(0x1FFFF000);&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;//:::::::::::::::::::::::::::::::::::::::::::::::::::::::&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made a little code for blinking a led with Processor Expert, but&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN class="ita-kd-inputtools-div"&gt;&lt;/SPAN&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV dir="ltr"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;unfortunately the led don't blink.&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;There 's&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;something wrong.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV dir="ltr"&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Thanks&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;to whoever&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;can help me.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Jerry&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV dir="ltr"&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-337432"&gt;FRDM-KL25Z-LED.bin.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 17:12:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370448#M19189</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-11-25T17:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370449#M19190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file that you have attached is a Motorola SREC file and not a binary file; you need to create a binary if you want to load to the uTasker serial loader using USB-MSD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loading the SREC via the UART is possible but the UART on the FRDM-KL05Z passes through the OpenSDA's virtual COM port. This doesn't support XON/XOFF and so won't work correctly as it is. Either a different UART can be used or else the Baud rate can be reduced from 115200 to 57600 (or lower) and the intermediate buffer removed (INTERMEDIATE_PROG_BUFFER) and then it programs each byte at a time to flash (but needs to be slower to avodi UART rx overruns while programming). &lt;EM&gt;See the uTasker serial loader guide for an explanation of the intermediate buffer operation for flash that can't program each byte fast enough to keep up with 115200 Baud reception&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem with your application program itself is that it is configuring SIM_CLKDIV1 for a system clock divide of 1 and a bus clock divide of 2, which is too fast for the KL25Z which is running at 48MHz due to the uTasker serial loader pre-configuration (system divide 2 and bus divide 4 to give 48MHz system clock and 24MHz bus clock). If you remove this clock setting it then flashes the LED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note however that the uTasker serial loader will have started the watchdog (if not disabled or PTD4 held at '0' at reset) and so you will either need to retrigger it or disable it to avoid it resetting after about 1s.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 22:41:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370449#M19190</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-11-25T22:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370450#M19191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I changed the clock setting and now the application program works fine.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;I noticed&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;a &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;strange thing :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;accidentally I have insert to MSD a new application program without deleting the old file.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/47562i89D646F6E3422F0E/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.jpg" alt="pastedImage_0.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;The risult is that the bord don't exit from boot; after reset is not more possible to download other files.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;It seems that the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;boots&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is damaged, it is necessary erase the micro and reloading the boot file &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;to restore&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the correct functionality.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;I have tasted in a new computer with WIN8,&amp;nbsp; but&amp;nbsp; &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;there is&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;some problems..&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;If you connect the board with inside only the boot, only the fist time it's possible to insert the program file.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Thanks in advance&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Jerry&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 14:44:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370450#M19191</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-11-26T14:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370451#M19192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that you have changed the name of the upload disk ;-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. According to the documentation it is necssary to first delete the existing file before uploading a new file, unless the new file has the same name as the old one. This is due to the internal workings and interaction with the file system on the PC. Uploading a new file with a different name will allow the trtansfer to take place and then you will see two files but nothing will have been programmed to Flash - the original file is still there.&lt;BR /&gt;This means that there shoudl be no consequence of doing this - I will do some tests to see whether I can reproduce an effect. In the meantime either load the same name for an automatic erase/program or else perform the manual delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. There is a define WINDOWS_8_1_WORKAROUND which adds a workaround for Windows 8.1. This was added at the beginning of 2014 when Windows 8.1 patch became available and people started having problems with USB-MSD loaders generally. Since then I haven't heard of new issues but I have very recently aquired a Windows 8.1 PC whcih I can now test on myself. Again I will do wome checking and inform of any new requirements as appropriate.&lt;/P&gt;&lt;P&gt;In the meantime I understand that also changing a Win8.1 setting as follows avoids difficulties: &lt;A href="http://answers.microsoft.com/en-us/windows/forum/windows8_1-hardware/how-do-i-prevent-system-volume-information-files/815b0046-d631-4419-a43e-44083a3733f5?page=2" title="http://answers.microsoft.com/en-us/windows/forum/windows8_1-hardware/how-do-i-prevent-system-volume-information-files/815b0046-d631-4419-a43e-44083a3733f5?page=2"&gt;http://answers.microsoft.com/en-us/windows/forum/windows8_1-hardware/how-do-i-prevent-system-volume-information-files/815b0046-d631-4419-a43e-44083a3733f5?page=2&lt;/A&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 15:27:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370451#M19192</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-11-26T15:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370452#M19193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Mark,&lt;/P&gt;&lt;P&gt;After I have reproduced the problem, I have read the entire KL25 &lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;with segger-jlink.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; attached, &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;if it can help&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;you,&lt;/SPAN&gt;&lt;/SPAN&gt; my original bootloader (&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;EM&gt;uTaskerSerialBoot.srec), &lt;/EM&gt;the entire program code (boot+app.) and (&lt;EM&gt;BootRead.srec)&lt;/EM&gt;, and &lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt; entire program code without app. code &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;EM&gt;(BootRead-noApp.srec&lt;/EM&gt; ) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;deleted&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;manually.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Unfortunately&lt;/SPAN&gt; &lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="defaultSkin"&gt;&lt;SPAN class="j-attachment-name-chop"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt; after the problem &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="hps"&gt;it is necessary to erase the chip and download the original boot.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 16:59:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370452#M19193</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-11-26T16:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370453#M19194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just loaded your file (the one with the complete flash image) and see that theer is an application running which flashes the green LED.&lt;/P&gt;&lt;P&gt;If I short circuit J1-6 with GND and made a reset of the board it eneters the boot loader and then I see the application "FRDM-KL25Z-LED-03.bin 26.11.2014 14:36 2'604 bytes".&lt;/P&gt;&lt;P&gt;The boot loader flashes the RED LED (which you changed).&lt;/P&gt;&lt;P&gt;I could then upload new programs to it. Therefore I don't think that it was necessary to load the boot loader again since it was fully intact and could be forced to start with the standard input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I did a first test using Windows 8.1; the software loading worked normally but I did see that it wrote a file called something like "information volume" as an invisible file (which is known and ignored as download data) but this does stop the file name display from operating normally. I'll fix this now that I can test it (although it doesn't cause any disturbance to the actual boot loading operation).&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 15:40:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370453#M19194</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-11-28T15:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370454#M19195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I spend a couple of hours checking the Windows 8.1 behaviour in detail and making some adjustments to achieve full compatibility with the file display. I can now work with Windows 8.1 and Windows 7 and the results are identical in each case (allowing loading, deleting, overwriting etc.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Windows 8.1 does is create an invisible system directory called "InformationSystem Volume" in the root directory and a file called "IndexerVolume.INDEX" in it with a little data in unicode (I don't know how the data is interpreted but initially there are onyl about 20 bytes or so). This operation must not be mistaken for a user download, which is however easy to avoid. What it nevertheless does is complicate the management of a file name and information which can be displayed when the loader is started again with a software already stored due to the fact that this file may be there or also may not (eg. other Windows PCs or the operation disabled) and when it performs its writes it also allocates FAT clusters for its own use, which moves other sector locations aroudn for the boot loader .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a little manipulation it is however quite simple to save things to flash as if it weren't there and so when it is connected again Windows 8.1 simply adds the same system directory (again) - after the software file object in the root directory. This doesn't really disturb anything and is ignored as anything to do with the uploading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the anaysis and modifications I uses a few USB simulation scripts (one for analysing and testing the Windows 8.1 connection sequence, one for the way that it deletes a file and one for the software upload). I have attached these as well as a new version of &lt;STRONG&gt;usb_loader.c&lt;/STRONG&gt; [modifications are documented in the header with modification references {21} and {22} so that the changes can be copied to older versions if needed]. The simulation scripts can be played through the project code in the uTasker simulator to test the three cases (enumeration is commanded in the USB menu and then the scripts can be opened) which allows verifying the code's operation and also seeing the data involved (the file objects are easily interpretable once a DIR_ENTRY_STRUCTURE_FAT32 pointer is set to the sector buffer).&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Nov 2014 01:21:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370454#M19195</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-11-29T01:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370455#M19196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Mark, you are NUMBER 1!!:smileyhappy:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Nov 2014 08:41:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370455#M19196</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-11-29T08:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370456#M19197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;with the new file usb_loader.c&amp;nbsp; there are some errors.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/47802iB3613245CC6E6438/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.jpg" alt="pastedImage_0.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 16:17:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370456#M19197</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-12-03T16:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370457#M19198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that your serial loader file is a bit too old so, to be sure, I have attached all serial loader application files newer than July 2014. These are setup for the KL25 but I think that you probably only need a newer version of the Loader.c and possibly a new header due to fnADDSREC_fil() being moved to a different location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The undefined references to fnGetUSB_x() can not be explained by file content since these are all in the latest usb_loader.c. However I expect that they will go away once you do a clean/rebuild after adding the new files to the project.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 16:37:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370457#M19198</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-12-03T16:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370458#M19199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;with last your files now it's ok, I tested on WIN7.&lt;/P&gt;&lt;P&gt;The project that I have used is uTaskerKinetisV1.4.7&amp;nbsp; « &lt;EM&gt;Last Edit: July 08, 2014, 03:10:45 PM by mark&lt;/EM&gt; » &lt;A href="http://www.utasker.com/forum/index.php?topic=1721.0" title="http://www.utasker.com/forum/index.php?topic=1721.0"&gt;KINETIS Project Code&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I see for example in your attached file config.h there are some newers modifications:&lt;/P&gt;&lt;P&gt; 12.07.2014 Add FRDM_KE02Z40M, FRDM_KE04Z and FRDM_KE06Z&lt;/P&gt;&lt;P&gt; 04.11.2014 Add FRDM_KL43Z, FRDM_K22F, TWR_K22F120M and TWR_K24F120M&lt;/P&gt;&lt;P&gt; 05.11.2014 Add TWR_KV10Z32, FRDM_KL03Z, TWR_KM34Z50M and TWR_KW21D256&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;There is available a newer Kinetis project than V1.4.7?&lt;/P&gt;&lt;P&gt;May I use your uTaskerSerialLoaderApplicationFiles also with FRDM-K20D50M?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Unfortunately,&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;my sister&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;took me the computer with WIN8, I test it next week.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Regards &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Jerry&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2014 07:11:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370458#M19199</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-12-04T07:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370459#M19200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V1.4.7 is the present relase. V1.4.8 is in preparation including support of additional Freescale boards (the ones in the header notes plus more for KV, KM and KW families too). The serial loader has KBOOT compatibility in parallel with other feratures (SD card, Ethernet etc.) but allows things like KBOOT HID and USB-MSD to be used in a composite device.&lt;/P&gt;&lt;P&gt;V1.4.8 has a lot of new application functionality (A selection being: flexible composite USB devices with multiple CDC mixed with various other classes; low power radio networking, multiple port Ethernet using SPI Ethernet devices, new TCP/IP features including SSDP, multiple FTP servers and multiple TELNET client support, automatic very low power mode switching, multi-disk FAT in various internal and external Flash media with complete USB-MSD interface support to all).&lt;/P&gt;&lt;P&gt;V1.4.8 and its features are presently being used in various pilot projects.&lt;/P&gt;&lt;P&gt;A general release will probably be made in the next few weeks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The serial loader files are HW independent and will operate on any of the supported board, including FRDM-K20D50M - the (V1.4.7) board list is at &lt;A href="http://www.utasker.com/kinetis.html" title="http://www.utasker.com/kinetis.html"&gt;µTasker Kinetis support&lt;/A&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2014 14:06:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370459#M19200</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2014-12-04T14:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370460#M19201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;Wonderful work, tested on WIN8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2014 08:27:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370460#M19201</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2014-12-09T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370461#M19202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Mark,&lt;/P&gt;&lt;P&gt;I have changed a pin to force in boot mode (PTA16)&amp;nbsp; and the blink-led to PTC10.&lt;/P&gt;&lt;P&gt;Setting a few ports , a application code works fine , file KL25Z00.hex (file .bin used to boot).&lt;/P&gt;&lt;P&gt;Setting other port&amp;nbsp; without adding code source , after bootloading the application do not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 16:42:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370461#M19202</guid>
      <dc:creator>jerryfavero</dc:creator>
      <dc:date>2015-01-23T16:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re: FRDM-KL25Z uTasker USB Bootloader application program</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370462#M19203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The .rar is damaged and the project can only be partly extracted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you post the binary that works and the one that doesn't work?&lt;/P&gt;&lt;P&gt;I don't think that the boot loader operation will generally effect the application so are you sure that the application works correctly when operating by itself?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See appendix B of the following document for a complete list of compatibility points to be considered: &lt;A href="http://www.utasker.com/docs/uTasker/uTaskerSerialLoader.PDF" title="http://www.utasker.com/docs/uTasker/uTaskerSerialLoader.PDF"&gt;http://www.utasker.com/docs/uTasker/uTaskerSerialLoader.PDF&lt;/A&gt;&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;Kinetis: &lt;A href="http://www.utasker.com/kinetis.html" title="http://www.utasker.com/kinetis.html"&gt;µTasker Kinetis support&lt;/A&gt;&lt;/P&gt;&lt;P&gt;KL25: &lt;A href="http://www.utasker.com/kinetis/FRDM-KL25Z.html" title="http://www.utasker.com/kinetis/FRDM-KL25Z.html"&gt;µTasker Kinetis FRDM-KL25Z support&lt;/A&gt; / &lt;A href="http://www.utasker.com/kinetis/TWR-KL25Z48M.html" title="http://www.utasker.com/kinetis/TWR-KL25Z48M.html"&gt;http://www.utasker.com/kinetis/TWR-KL25Z48M.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 17:12:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/FRDM-KL25Z-uTasker-USB-Bootloader-application-program/m-p/370462#M19203</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-01-23T17:12:31Z</dc:date>
    </item>
  </channel>
</rss>

