<?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: KL03 factory setup of the ROM Bootloader in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1282171#M60614</link>
    <description>&lt;P&gt;Hello Steffen&lt;/P&gt;&lt;P&gt;Since the chips are delivered with blank memory (apart from not being secured) with all loading peripherals enabled by default, the KL03 starts in its ROM LOADER mode. The LPUART can then be used for loading mode with the blhost.&lt;/P&gt;&lt;P&gt;Your application must set the flash configuration to NOT disable the ROM loader, to disable the NMI interrupt and to allow the ROM LOADER mode to be selected by the BOOT input (NMI pin) and then you will "always" be able to boot to the ROM Loader by holding the NMI input to 0V at reset. BCA is not needed unless you want to expressly disable the possibility to load via certain interfaces since a blank BCA allows any to be used.&lt;BR /&gt;&lt;BR /&gt;The uTasker project (open source on Github, including opimised KL03 project and KL03 simulation) uses:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;#define KINETIS_FLASH_CONFIGURATION_NONVOL_OPTION (FTFL_FOPT_LPBOOT_CLK_DIV_1 | &lt;STRONG&gt;FTFL_FOPT_RESET_PIN_ENABLED&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_BOOTSRC_SEL_FLASH&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_BOOTPIN_OPT_ENABLE&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_NMI_DISABLED&lt;/STRONG&gt;) // use boot ROM if NMI is held low at reset&lt;/FONT&gt;&lt;BR /&gt;to configure for the KL03 in this mode.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mark&lt;BR /&gt;&lt;EM&gt;[uTasker project developer for Kinetis and i.MX RT]&lt;/EM&gt;&lt;BR /&gt;&lt;FONT color="#999999"&gt;Contact me by personal message or on the uTasker web site to discuss professional training, solutions to problems or rapid product development requirements&lt;BR /&gt;&lt;BR /&gt;For professionals searching for faster, problem-free Kinetis and i.MX RT 10xx developments the uTasker project holds the key: &lt;A href="https://www.utasker.com/kinetis/FRDM-KL03Z.html" target="_blank"&gt;https://www.utasker.com/kinetis/FRDM-KL03Z.html&lt;/A&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 26 May 2021 02:28:47 GMT</pubDate>
    <dc:creator>mjbcswitzerland</dc:creator>
    <dc:date>2021-05-26T02:28:47Z</dc:date>
    <item>
      <title>KL03 factory setup of the ROM Bootloader</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1281849#M60611</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;currently we are doing a development with the FRDM-KL03Z dev board. We plan to create a custom board. This board must be very small and therefore we want to avoid anything not really needed.&lt;/P&gt;&lt;P&gt;We want to use the on-chip ROM Bootloader. We need to know:&lt;/P&gt;&lt;P&gt;1. what is the factory setting of the BCA and the clock settings, because we want to avoid the debugging interface for programming.&lt;/P&gt;&lt;P&gt;2. Is it enough to boot with NMI tied to ground to enter and use the ROM bootloader? Or what else is needed?&lt;/P&gt;&lt;P&gt;3. Can we use the UART interface and blhost for programming?&lt;/P&gt;&lt;P&gt;4. We develop with MCUXpresso (11). Do we need to check/set anything in the project in order to not overwrite settings (and "brick") the device with the first programming?&lt;/P&gt;&lt;P&gt;Thanks in advance for answering the above questions or hinting at a document which helps,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 12:58:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1281849#M60611</guid>
      <dc:creator>steffen_norbert</dc:creator>
      <dc:date>2021-05-25T12:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: KL03 factory setup of the ROM Bootloader</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1282171#M60614</link>
      <description>&lt;P&gt;Hello Steffen&lt;/P&gt;&lt;P&gt;Since the chips are delivered with blank memory (apart from not being secured) with all loading peripherals enabled by default, the KL03 starts in its ROM LOADER mode. The LPUART can then be used for loading mode with the blhost.&lt;/P&gt;&lt;P&gt;Your application must set the flash configuration to NOT disable the ROM loader, to disable the NMI interrupt and to allow the ROM LOADER mode to be selected by the BOOT input (NMI pin) and then you will "always" be able to boot to the ROM Loader by holding the NMI input to 0V at reset. BCA is not needed unless you want to expressly disable the possibility to load via certain interfaces since a blank BCA allows any to be used.&lt;BR /&gt;&lt;BR /&gt;The uTasker project (open source on Github, including opimised KL03 project and KL03 simulation) uses:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;#define KINETIS_FLASH_CONFIGURATION_NONVOL_OPTION (FTFL_FOPT_LPBOOT_CLK_DIV_1 | &lt;STRONG&gt;FTFL_FOPT_RESET_PIN_ENABLED&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_BOOTSRC_SEL_FLASH&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_BOOTPIN_OPT_ENABLE&lt;/STRONG&gt; | &lt;STRONG&gt;FTFL_FOPT_NMI_DISABLED&lt;/STRONG&gt;) // use boot ROM if NMI is held low at reset&lt;/FONT&gt;&lt;BR /&gt;to configure for the KL03 in this mode.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mark&lt;BR /&gt;&lt;EM&gt;[uTasker project developer for Kinetis and i.MX RT]&lt;/EM&gt;&lt;BR /&gt;&lt;FONT color="#999999"&gt;Contact me by personal message or on the uTasker web site to discuss professional training, solutions to problems or rapid product development requirements&lt;BR /&gt;&lt;BR /&gt;For professionals searching for faster, problem-free Kinetis and i.MX RT 10xx developments the uTasker project holds the key: &lt;A href="https://www.utasker.com/kinetis/FRDM-KL03Z.html" target="_blank"&gt;https://www.utasker.com/kinetis/FRDM-KL03Z.html&lt;/A&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 02:28:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1282171#M60614</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2021-05-26T02:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: KL03 factory setup of the ROM Bootloader</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1282430#M60624</link>
      <description>&lt;P&gt;Hi MArk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your post. It's exactly the information I needed.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;</description>
      <pubDate>Wed, 26 May 2021 08:56:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KL03-factory-setup-of-the-ROM-Bootloader/m-p/1282430#M60624</guid>
      <dc:creator>steffen_norbert</dc:creator>
      <dc:date>2021-05-26T08:56:06Z</dc:date>
    </item>
  </channel>
</rss>

