<?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 Kboot Disable NMI_b in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513822#M32513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, I'm working in a custom board with the KL25Z64. PTA4 (NMI_b) is configured in my application as output with a pulldown resistor. When I run the app without the bootloader everything works fine, but when used in combination with the bootloader, nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I reckon Kboot leaves the NMI_DIS (FOPT register) bit enabled by default, thus triggering the interrupt constantly and never running the main application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried changing the flash configuration in my startup_MKL25Z4.s file from:&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="_jivemacro_uid_14649159088469954 jive_macro_code jive_text_macro" data-renderedposition="238_50_798_80" jivemacro_uid="_14649159088469954" modifiedtitle="true"&gt;&lt;P&gt;&amp;nbsp; .section .FlashConfig, "a"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFE&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14649160048022145 jive_text_macro" data-renderedposition="344_50_798_80" jivemacro_uid="_14649160048022145" modifiedtitle="true"&gt;&lt;P&gt;&amp;nbsp; .section .FlashConfig, "a"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFF7FE&amp;nbsp;&amp;nbsp; /* Change here */&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried adding the NMI handler to my system_MKL25Z4.c and change the pin mode to ALT1 from there. But I'm not even sure if my interrupt handler is being triggered at all!!&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="_jivemacro_uid_14649162102157808 jive_macro_code jive_text_macro" data-renderedposition="554_50_798_96" jivemacro_uid="_14649162102157808"&gt;&lt;P&gt;void NMI_Handler(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; PORT_BWR_PCR_MUX(PORTA, 4, 1);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Select ALT1&lt;/P&gt;&lt;P&gt;&amp;nbsp; FGPIO_SET_PDDR(PTA, 1 &amp;lt;&amp;lt; 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; // Make pin an output&lt;/P&gt;&lt;P&gt;&amp;nbsp; FGPIO_WR_PCOR(PTA, 1 &amp;lt;&amp;lt; 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; // Output LOW&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm probably doing something very silly. Any help will be much appreciated.&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;Alex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2016 01:17:14 GMT</pubDate>
    <dc:creator>alex323qp</dc:creator>
    <dc:date>2016-06-03T01:17:14Z</dc:date>
    <item>
      <title>Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513822#M32513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, I'm working in a custom board with the KL25Z64. PTA4 (NMI_b) is configured in my application as output with a pulldown resistor. When I run the app without the bootloader everything works fine, but when used in combination with the bootloader, nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I reckon Kboot leaves the NMI_DIS (FOPT register) bit enabled by default, thus triggering the interrupt constantly and never running the main application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried changing the flash configuration in my startup_MKL25Z4.s file from:&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="_jivemacro_uid_14649159088469954 jive_macro_code jive_text_macro" data-renderedposition="238_50_798_80" jivemacro_uid="_14649159088469954" modifiedtitle="true"&gt;&lt;P&gt;&amp;nbsp; .section .FlashConfig, "a"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFE&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14649160048022145 jive_text_macro" data-renderedposition="344_50_798_80" jivemacro_uid="_14649160048022145" modifiedtitle="true"&gt;&lt;P&gt;&amp;nbsp; .section .FlashConfig, "a"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFFFFF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long 0xFFFFF7FE&amp;nbsp;&amp;nbsp; /* Change here */&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried adding the NMI handler to my system_MKL25Z4.c and change the pin mode to ALT1 from there. But I'm not even sure if my interrupt handler is being triggered at all!!&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="_jivemacro_uid_14649162102157808 jive_macro_code jive_text_macro" data-renderedposition="554_50_798_96" jivemacro_uid="_14649162102157808"&gt;&lt;P&gt;void NMI_Handler(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; PORT_BWR_PCR_MUX(PORTA, 4, 1);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Select ALT1&lt;/P&gt;&lt;P&gt;&amp;nbsp; FGPIO_SET_PDDR(PTA, 1 &amp;lt;&amp;lt; 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; // Make pin an output&lt;/P&gt;&lt;P&gt;&amp;nbsp; FGPIO_WR_PCOR(PTA, 1 &amp;lt;&amp;lt; 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; // Output LOW&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm probably doing something very silly. Any help will be much appreciated.&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;Alex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 01:17:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513822#M32513</guid>
      <dc:creator>alex323qp</dc:creator>
      <dc:date>2016-06-03T01:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513823#M32514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After a few cups of coffee and reading &lt;A _jive_internal="true" href="https://community.nxp.com/thread/350133" rel="nofollow noopener noreferrer" target="_blank"&gt;this thread&lt;/A&gt; I managed to make everything work again by changing my flash config section from my illogical (it seems) "&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="datatypes" style="font-weight: bold; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #2e8b57;"&gt;long&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green;"&gt;0xFFFFF7FE" to "&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="datatypes" style="font-weight: bold; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #2e8b57;"&gt;long&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green;"&gt;0xFFFFFBFE"&lt;/SPAN&gt;&lt;/SPAN&gt;. Now I can't help but wonder:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) I was convinced that the right value was "... F7...". I arrived to this conclusion by analysing the FOPT register of the datasheet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14649233774058093 jive_text_macro" data-renderedposition="194_8_1192_16" jivemacro_uid="_14649233774058093"&gt;&lt;P&gt;??=1, FAST_INIT=1, RESET_PIN_CFG=1, NMI_DIS=0, ??=1, LPBOOT=11&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, at the risk of asking something really dumb, can someone please point me out in the right direction (datasheet page # perhaps?) to understand the origins of &lt;SPAN style="color: #008000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;0xFFFF&lt;STRONG&gt;FB&lt;/STRONG&gt;FE?&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) Shouldn't my approach to change the pin mode in the NMI_Handler() have worked as well?&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;Alex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 03:17:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513823#M32514</guid>
      <dc:creator>alex323qp</dc:creator>
      <dc:date>2016-06-03T03:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513824#M32515</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;Please check blow abstraction from KL25 reference manual:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59037i3878570DE090B635/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The NMI_DIS bit is located at FATA_FOPT bit2, that's why customer need to set 0b1011(0xB) to block NMI interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the NMI_DIS bit is cleard, the NMI interrupt is blocked, customer does not need to change the pin function if this pin doesn't need be used for another function.&lt;/P&gt;&lt;P&gt;If this pin need be used as GPIO pin, customer need to call related code to set the pin muxing as GPIO function.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Ma Hui&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 02:58:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513824#M32515</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2016-06-06T02:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513825#M32516</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;I am having the same issue here and and have followed the instructions listed by Ma Hui, but the problem is not fixed (still getting non maskable interrupt). &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have changed the flash byte values as below to disable the NMI_B bit in the startup_MK22F51212.S. &amp;nbsp;Using MK22FN512LH12. &amp;nbsp;Am I doing something wrong here - need to do something more?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Flash Configuration */&lt;BR /&gt; .section .FlashConfig, "a"&lt;BR /&gt; .long 0xFFFFFFFF&lt;BR /&gt; .long 0xFFFFFFFF&lt;BR /&gt; .long 0xFFFFFFFF&lt;BR /&gt; .long 0xFFFFFBFE&lt;BR /&gt; .text&lt;BR /&gt; .thumb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 18:03:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513825#M32516</guid>
      <dc:creator>mjg8t</dc:creator>
      <dc:date>2016-12-30T18:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513826#M32517</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;Don't forget that the same pin is used to enter the EzPort mode on the K22 - therefore 0xfffffbfe disables NMI but not EzPort. To disable both, 0xfffff9fe can be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore remember that only the boot loader can control this and not the application code, so the change needs to be in the boot loader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I would recommend NXP to remove the assembler code from the project and put it in C code using defines. It would make life easier, as well as making the code portable. There is no need to have assembler code and it only causes confusion and lack of portability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To control the flash configuration in the uTasker project (also in its version of the KBOOT loader) it looks as below - much easier to understand, control and maintain (and no time lost by users trying to work out what the values mean).&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;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;// Flash configuration settings to be used
//
#define KINETIS_FLASH_CONFIGURATION_BACKDOOR_KEY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {BACKDOOR_KEY_0, BACKDOOR_KEY_1, BACKDOOR_KEY_2, BACKDOOR_KEY_3, BACKDOOR_KEY_4, BACKDOOR_KEY_5, BACKDOOR_KEY_6, BACKDOOR_KEY_7}
#define KINETIS_FLASH_CONFIGURATION_PROGRAM_PROTECTION (0xffffffff) // PROT[24:31]:PROT[23:16]:PROT[15:8]:PROT[7:0] – no protection when all are ‘1’
#define KINETIS_FLASH_CONFIGURATION_SECURITY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (FTFL_FSEC_SEC_UNSECURE | FTFL_FSEC_FSLACC_GRANTED | FTFL_FSEC_MEEN_ENABLED | FTFL_FSEC_KEYEN_ENABLED)
#define KINETIS_FLASH_CONFIGURATION_NONVOL_OPTION&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (FTFL_FOPT_EZPORT_DISABLED | FTFL_FOPT_LPBOOT_NORMAL | FTFL_FOPT_NMI_DISABLED) // disable NMI and EzPort functions on NMI/EzP_CS input

// Fill out the flash configuration
//
const KINETIS_FLASH_CONFIGURATION __flash_config = { // set at 0x400 in linker script
&amp;nbsp;&amp;nbsp;&amp;nbsp; KINETIS_FLASH_CONFIGURATION_BACKDOOR_KEY,
&amp;nbsp;&amp;nbsp;&amp;nbsp; KINETIS_FLASH_CONFIGURATION_PROGRAM_PROTECTION,
&amp;nbsp;&amp;nbsp;&amp;nbsp; KINETIS_FLASH_CONFIGURATION_SECURITY,
&amp;nbsp;&amp;nbsp;&amp;nbsp; KINETIS_FLASH_CONFIGURATION_NONVOL_OPTION,
};&lt;SPAN class="line-numbers-rows"&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;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;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;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 20:34:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513826#M32517</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2016-12-30T20:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Kboot Disable NMI_b</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513827#M32518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Mark. &amp;nbsp;I should have specified that I am not using Kboot, but just needed to solve the NMI_b and EZport conflict upon boot, which your &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;0xfffff9fe fixes&lt;/SPAN&gt;. &amp;nbsp;It seems it would simply life for many to have these disabled by default, or like you mention a simple define to switch between modes during compile time. &amp;nbsp;How I wished you worked for NXP.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 23:43:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Kboot-Disable-NMI-b/m-p/513827#M32518</guid>
      <dc:creator>mjg8t</dc:creator>
      <dc:date>2016-12-30T23:43:36Z</dc:date>
    </item>
  </channel>
</rss>

