<?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: Hard fault on KE02 caused by write to static variable in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458363#M27366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which compiler are you using? It should be warning that at 32 bit wide value is being written to an 8 bit wide space: u8XX = u32XX; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Nov 2015 18:02:54 GMT</pubDate>
    <dc:creator>bobpaddock</dc:creator>
    <dc:date>2015-11-05T18:02:54Z</dc:date>
    <item>
      <title>Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458362#M27365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to implement the I2C bootloader (&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;AN4775)&lt;/SPAN&gt; on the KE02 and get a hard fault interrupt.&amp;nbsp; I have tracked it down to the line that causes it using methods described in other posts which worked as when I remove the offending line I do not get the hard fault interrupt.&amp;nbsp; The problem is that I don't understand why it is causing the interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 14.6667px; line-height: 22px; font-family: Calibri, sans-serif;"&gt;in the FC_protocol.c module there are some variables declared:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static uint8_t u8MCU_ID_InfoBuff[64];&lt;/P&gt;&lt;P&gt;static uint8_t u8DataBuff[WRITE_BLOCK_SIZE];&lt;/P&gt;&lt;P&gt;static uint8_t u8MCU_ID_InfoLength;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the line that causes the interrupt is the last line in a function within that module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void MCU_ID_Package( void )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; ADDRESS_TYPE *pTempAddress;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t *pRxFrameLenth;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t u32Index;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t i;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint8_t Sum;&lt;/P&gt;&lt;P&gt;&amp;nbsp; u8MCU_ID_InfoBuff[4] = sMCU_Info.Version;&lt;/P&gt;&lt;P&gt;&amp;nbsp; u8MCU_ID_InfoBuff[5] = (unsigned char)sMCU_Info.Sdid&amp;gt;&amp;gt;8;&lt;/P&gt;&lt;P&gt;&amp;nbsp; u8MCU_ID_InfoBuff[6] = (unsigned char)sMCU_Info.Sdid;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; u32Index = 7;&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;&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; -&lt;/P&gt;&lt;P&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; -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; u8MCU_ID_InfoLength = u32Index;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made the problem go away in two ways:&lt;/P&gt;&lt;P&gt;1. Make u8MCU_ID_InfoLength non-static&lt;/P&gt;&lt;P&gt;2. Make u8MCU_ID_InfoLength a uint32_t&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;neither of which make any sense to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From map file in original state:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.bss.u8MCU_ID_InfoLength&lt;/P&gt;&lt;P&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; 0x1ffffe68&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x1 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;P&gt; .bss.u8DataBuff&lt;/P&gt;&lt;P&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; 0x1ffffe69&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x40 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;P&gt; .bss.u8MCU_ID_InfoBuff&lt;/P&gt;&lt;P&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; 0x1ffffea9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x40 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change u8MCU_ID_InfoLength to uint32_t it stays in same place and u8DataBuff is shifted by 3 bytes as expected, but why should this work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.bss.u8MCU_ID_InfoLength&lt;/P&gt;&lt;P&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; 0x1ffffe68&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x4 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;P&gt; .bss.u8DataBuff&lt;/P&gt;&lt;P&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; 0x1ffffe6c&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x40 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;P&gt; .bss.u8MCU_ID_InfoBuff&lt;/P&gt;&lt;P&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; 0x1ffffeac&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x40 ./FC_protocol/FC_protocol.o&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 17:21:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458362#M27365</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-05T17:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458363#M27366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which compiler are you using? It should be warning that at 32 bit wide value is being written to an 8 bit wide space: u8XX = u32XX; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 18:02:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458363#M27366</guid>
      <dc:creator>bobpaddock</dc:creator>
      <dc:date>2015-11-05T18:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458364#M27367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using GCC in Codewarrior.&amp;nbsp; It doesn't produce a warning but I'm sure there are options available where it would.&amp;nbsp; Shouldn't cause a hard fault interrupt though and casting to a u8 doesn't help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 08:51:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458364#M27367</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-06T08:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458365#M27368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add -Wall and -Wextra to the compiler flags. Also look at the map file to see if running out of RAM space or a stack overflow.&amp;nbsp; Frequent causes for problems like this that make no sense, in that the problem is actually someplace else but the symptoms show up here. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 14:19:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458365#M27368</guid>
      <dc:creator>bobpaddock</dc:creator>
      <dc:date>2015-11-06T14:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458366#M27369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Paul Robinson:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another cause of hardfault is an unaligned memory access. The ARM Cortex M0+ in the KE02 requires memory accesses to be word aligned (32-bit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this kind of issue it is useful to debug at the assembly code level, to see what is triggering the fault. If possible please share your project so I can replicate the issue and try to find the root cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Jorge Gonzalez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 22:30:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458366#M27369</guid>
      <dc:creator>Jorge_Gonzalez</dc:creator>
      <dc:date>2015-11-09T22:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458367#M27370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jorge&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, this has been suggested to me and changing to Optimization level from 0s to 02 appears to fix the issue and I the memory map shows that there are fill bytes inserted after the problem variable (u8MCU_ID_InfoLength).&amp;nbsp; I don't know why I am only seeing this problem now though and need to optimize for size to keep code size down as this is a bootloader. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have attached codewarrior project, hope you can make some sense of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 08:59:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458367#M27370</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-10T08:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458368#M27371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've had problems with using -Os that optimizes for size as it has caused me alignment issues therefore always use -O2. In some processors, notably AVR-LibC, library functions don't work correctly unless optimization is enabled. -O3 can be to aggressive.&amp;nbsp; I've seen it generate bad code on other processors. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 12:52:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458368#M27371</guid>
      <dc:creator>bobpaddock</dc:creator>
      <dc:date>2015-11-10T12:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458369#M27372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Jorge, the project I attached is actually working as I had been experimenting with some of the settings.&amp;nbsp; Data sections &lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;(-fdata-sections) needs to be selected under optimizations for the problem to occur (this was set by default and recommended by Freescale).&amp;nbsp; Hope this helps you identify the problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 14:15:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458369#M27372</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-10T14:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458370#M27373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have always used -Os and not come across this problem before so its interesting to hear that you have had alignment issues in the past.&amp;nbsp; Its not really an option for me to switch to -O2 though in this project as it is a bootloader and to protect it I will need to sacrifice half of my 16K flash which won't leave enough room for my application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 14:19:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458370#M27373</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-10T14:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458371#M27374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have been over this again and discovered that while removing a line of code was making the problem go away, it was not the cause of the hard fault.&amp;nbsp; The variable was being optimized out which was shifting an array which aligned it hence stopping the hard fault.&amp;nbsp; Problem was actually occurring when a uint32 pointer was being pointed to the misaligned array.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Making sure the array is aligned&amp;nbsp; :static uint8_t u8DataBuff[WRITE_BLOCK_SIZE]&amp;nbsp; __attribute((aligned (4))) solves it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 17:32:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458371#M27374</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-11T17:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458372#M27375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that misaligned accesses lead to a hard fault on Cortex M0+. The same code will however run on a Cortex M4 Kintetis since this supports misaligned access - &lt;EM&gt;therefore it is possible that projects developed on a Kinetis K part will suddenly fail when tried on a KE part if alignment was not fully considered.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another technique to ensure alignment (when 32 bit content access is to be used) is to do&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;static &lt;SPAN style="text-decoration: underline;"&gt;unsigned long&lt;/SPAN&gt; u8DataBuff[WRITE_BLOCK_SIZE&lt;SPAN style="text-decoration: underline;"&gt;/sizeof(unsigned long)&lt;/SPAN&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- this assumes that WRITE_BLOCK_SIZE is divisible by 4, which would probably be the case when 32 bit pointers are used to access its content.&lt;/P&gt;&lt;P&gt;- it may need a casting when using the buffer content as bytes but has the advantage that the &lt;EM&gt;attribute&lt;/EM&gt; is not required. The advantage of avoiding the attribute is because it is non-portable due to the fact that different compilers do it different ways and so if you needed to move code to a different environement (or someone else needs to do it in the future) it will avoid possible complications trying to find out why it won't build and then how to solve it in the other environment.&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, 11 Nov 2015 17:59:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458372#M27375</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-11-11T17:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hard fault on KE02 caused by write to static variable</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458373#M27376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, that's a good suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 12:43:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Hard-fault-on-KE02-caused-by-write-to-static-variable/m-p/458373#M27376</guid>
      <dc:creator>paulrobinson</dc:creator>
      <dc:date>2015-11-12T12:43:50Z</dc:date>
    </item>
  </channel>
</rss>

