<?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>Kinetis MicrocontrollersのトピックRe: Re: Windows asks &amp;quot;Do you want to scan and fix...?&amp;quot; in bootloader (AN4379 on K60)</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273018#M9461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just now i figured out that this issue is only in Windows 8. In windows 8/8.1 when we try to copy and paste the .S19 file it is showing error because as soon as we paste or drag and drop into the drive, the drive disappears and windows shows error in copying. So i assume the image file is not loaded into the flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In windows 7, only after the completion of paste operation the drive disappears and the flashing is working. In this case the code is jumping to user application area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know what is the issue in Windows 8. Will the provided code work on windows 8 or is it meant for only windows 7 etc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also we found that &lt;STRONG&gt;MAC PC&lt;/STRONG&gt; is not even recognizing this device as Mass Storage. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please let us know if there is any version of K70 boot loader code that will work for MAC, Windows 8 and Windows 7.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2014 10:54:09 GMT</pubDate>
    <dc:creator>pramodk_g_</dc:creator>
    <dc:date>2014-10-29T10:54:09Z</dc:date>
    <item>
      <title>Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273014#M9457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The bootloader and firmware update works fine, but when the device enumerates as a USB MSD volume, Windows 7 always asks "Do you want to scan and fix VOLUME (I:)?" and of course recommends that you scan and fix. Either selecting "scan and fix" or "continue without scanning" has no effect but is a bit of a nuisance for our customer/user to see.&amp;nbsp; Is there anything we can change to make this error go away?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ported the AN4379 bootloader to the MK60FN1M0VLQ12 using CW10.3, Freescale C tool chain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Cap'n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 16:47:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273014#M9457</guid>
      <dc:creator>TugboatCaptain</dc:creator>
      <dc:date>2013-07-15T16:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273015#M9458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you run the fsutil windows utility on the bootloader volume it indicates the volume is dirty, which triggers the "scan and fix"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;C:\Windows\system32&amp;gt;fsutil dirty query i:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Volume - i: is Dirty&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then looking in FAT16.c at location 37 in the hardcoded boot sector FAT16_BootSector I see that indeed the dirty bit is hardcoded to 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting the bit to 0 makes Windows no longer see the volume as dirty and needing a scan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,&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; /*37 - BS_Reserved1 = 1*/&lt;/P&gt;&lt;P&gt;use this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 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; /*37 - BS_Reserved1 = 0, dirty bit = 0 */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While the code originated five years ago, I do wonder if there were any underlying reasons for preferring setting of the dirty bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps anyone else having the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cap'n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 18:14:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273015#M9458</guid>
      <dc:creator>TugboatCaptain</dc:creator>
      <dc:date>2013-07-16T18:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273016#M9459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cap'n,&lt;/P&gt;&lt;P&gt;thanks for sharing! I was using that code for my bootloaders too, and was wondering why that annoying windows dialog was coming up. Your fixed helped me to get rid of this!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot comment why this bit is set in the original bootloader. But I think it is simply an oversight.&lt;/P&gt;&lt;P&gt;At least I have not seen any issues so far with the bootloader having that bit cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 07:58:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273016#M9459</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2013-07-17T07:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273017#M9460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/TugboatCaptain"&gt;TugboatCaptain&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for sharing. I was also facing the same issue and it got solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the original issue that i am facing is when i copy the ".afx.s19" image to the the Bootloader Drive the Drive disappears and appears again showing "SUCCESS.TXT" file which is expected as per document. But the code never switch to user application area, again when i restarts the board it goes to the boot loader. I tried with the images given in the zip file attached but no use. So i created a MQX hello world program by changing the .lcf file as the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MEMORY&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; vectorrom&amp;nbsp; (RX): ORIGIN = 0x0000C000, LENGTH = 0x00000400&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; cfmprotrom&amp;nbsp; (R): ORIGIN = 0x0000C400, LENGTH = 0x00000020&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; rom&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RX): ORIGIN = 0x0000C420, LENGTH = 0x00077BE0&amp;nbsp; # Code + Const data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; ram&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RW): ORIGIN = 0x1FFF0000, LENGTH = 0x00020000&amp;nbsp; # SRAM - RW data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; # kernel space starts after RAM variables (Location of MQX Kernel data + MQX heap)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; end_of_kd&amp;nbsp; (RW): ORIGIN = 0x2000FFF0, LENGTH = 0x00000000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; # Boot stack reused by MQX Kernel data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; bstack&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RW): ORIGIN = 0x2000FA00, LENGTH = 0x00000200&amp;nbsp; # Boot stack&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; end_bstack&amp;nbsp; (RW): ORIGIN = 0x2000FC00, LENGTH = 0x00000000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the same issue it always goes into bootloader code and i am not sure if it is writing the user code to its flash location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The serial port shows the following log before copying the .afx.s19 file,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CodeWarrior binary file found&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FLASHING....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please do not remove your device&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;########################&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Erasing flash memory...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#######################################################################################################################################################################################################################################&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERASE complete!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&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; ERROR......&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Unknown file type#&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Erasing flash memory...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#######################################################################################################################################################################################################################################&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERASE complete!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Erasing flash memory...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#######################################################################################################################################################################################################################################&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERASE complete!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is the log when i copy paste the .afx.s19 file to the drive,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;Flash image file complete!&lt;/P&gt;&lt;P&gt;Press RESET button to enter application mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erasing flash memory...&lt;/P&gt;&lt;P&gt;#######################################################################################################################################################################################################################################&lt;/P&gt;&lt;P&gt;ERASE complete!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erasing flash memory...&lt;/P&gt;&lt;P&gt;#######################################################################################################################################################################################################################################&lt;/P&gt;&lt;P&gt;ERASE complete!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erasing flash memory...&lt;/P&gt;&lt;P&gt;#######################################################################################################################################################################################################################################&lt;/P&gt;&lt;P&gt;ERASE complete!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erasing flash memory...&lt;/P&gt;&lt;P&gt;#######################################################################################################################################################################################################################################&lt;/P&gt;&lt;P&gt;ERASE complete!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Image File&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the drive reappears and shows SUCCESS.TXT file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check attached .zip file for the MSD boot loader and please let me know in which step i went wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 12:25:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273017#M9460</guid>
      <dc:creator>pramodk_g_</dc:creator>
      <dc:date>2014-10-28T12:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273018#M9461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just now i figured out that this issue is only in Windows 8. In windows 8/8.1 when we try to copy and paste the .S19 file it is showing error because as soon as we paste or drag and drop into the drive, the drive disappears and windows shows error in copying. So i assume the image file is not loaded into the flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In windows 7, only after the completion of paste operation the drive disappears and the flashing is working. In this case the code is jumping to user application area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know what is the issue in Windows 8. Will the provided code work on windows 8 or is it meant for only windows 7 etc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also we found that &lt;STRONG&gt;MAC PC&lt;/STRONG&gt; is not even recognizing this device as Mass Storage. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please let us know if there is any version of K70 boot loader code that will work for MAC, Windows 8 and Windows 7.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 10:54:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273018#M9461</guid>
      <dc:creator>pramodk_g_</dc:creator>
      <dc:date>2014-10-29T10:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Windows asks "Do you want to scan and fix...?" in bootloader (AN4379 on K60)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273019#M9462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am also having problem with AN4379, but on MCF51JM128, with windows 7 - when this dirty bit is set, upload runs fine. But when I clear the bit, upload fails, I traced it and the problem seems to be that after some time, windows 7 sends some different data and checksum fails in parses19.c&lt;/P&gt;&lt;P&gt;I am using sources from JM128 BADGE, then I found more recent sources from AN3927, but it didn't help.I dont' know why just changing this bit makes this difference. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Aug 2015 17:02:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Windows-asks-quot-Do-you-want-to-scan-and-fix-quot-in-bootloader/m-p/273019#M9462</guid>
      <dc:creator>Novalis</dc:creator>
      <dc:date>2015-08-09T17:02:23Z</dc:date>
    </item>
  </channel>
</rss>

