<?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: Clock Cycles for Task Execution Appears to be a Function of Clock Rate</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887004#M52479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you specify the core frequency used in each case? The execution time will depend on both core and bs speeds since the CPU operates at core speed and the GPIO accesses will be additionally dependent on the bus speed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the KL03 you will also have faster GPIO operation when you access them as fast GPIOs in the address range 0xf8000000 instead of the 0x400ff000 range.&lt;BR /&gt;In addition, you get faster code execution when using the PTOR register rather than the PDOR one with a read/modify/write logic 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Complete Kinetis solutions, training and support: &lt;A href="http://www.utasker.com/kinetis.html" target="test_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;BR /&gt;Kinetis KL02/KL03/KL05:&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL02Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL02Z.html&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL03Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL03Z.html&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL05Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL05Z.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Mar 2019 21:47:56 GMT</pubDate>
    <dc:creator>mjbcswitzerland</dc:creator>
    <dc:date>2019-03-12T21:47:56Z</dc:date>
    <item>
      <title>Clock Cycles for Task Execution Appears to be a Function of Clock Rate</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887003#M52478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using a FRDM-KL03Z evaluation board with the&amp;nbsp;MCU Expresso IDE. I have simple code where I am writing to the &lt;/P&gt;&lt;P&gt;GPIOA Port Data Output Register memory address to toggle a GPIO pin ON and OFF. The code that is doing so is pretty simple and is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #dd2867; font-size: large; "&gt;volatile&lt;/STRONG&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #1290c3; font-size: large; "&gt;uint32_t&lt;/STRONG&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ed7f48; font-size: large;"&gt;GPIOA_Port_Data_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #f9faf4; font-size: large;"&gt;(&lt;/SPAN&gt;&lt;STRONG style="color: #1290c3; font-size: large; "&gt;uint32_t&lt;/STRONG&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #f9faf4; font-size: large;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large;"&gt;0x400FF000&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt;u&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large;"&gt;//type cast the GPIOA_PDOR address to pointer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Data_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;|=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x80&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Write a 1 to GPIOA_7, &amp;nbsp;assign the value 0x080 to the pointer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Data_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;&amp;amp;=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x7F&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;; &lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Write a&amp;nbsp;0 to GPIOA_7&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Data_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;|=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x80&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Write a 1 to GPIOA_7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I have my bus clock set to 24 MHz (a 41.67 ns period), I see that the GPIO pin is ON for 250 ns, which equates to 6 clock cycles. When I change my bus clock to 8 MHz (a 125 ns period) I see the GPIO pin is on for 376 ns, which equates to 3 clock cycles. I am operating the MCU in run mode. According to Table 5-2 Module Clocks in the KL03 Sub-Family Reference Manual, the GPIO module uses the platform clock as the bus interface clock.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;P&gt;1) The MCU Expresso Clock Perspective does not show a 'Platform Clock'. Is the bus clock the same as the platform clock?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Why does the number of clock cycles for&amp;nbsp;the exercise of the GPIO pins vary with the bus clock frequency? It seems the number of clock cycles to execute a task should remain the same, but the time to execute a task should depend on the clock period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2019 12:40:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887003#M52478</guid>
      <dc:creator>aboss</dc:creator>
      <dc:date>2019-03-12T12:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Clock Cycles for Task Execution Appears to be a Function of Clock Rate</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887004#M52479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you specify the core frequency used in each case? The execution time will depend on both core and bs speeds since the CPU operates at core speed and the GPIO accesses will be additionally dependent on the bus speed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the KL03 you will also have faster GPIO operation when you access them as fast GPIOs in the address range 0xf8000000 instead of the 0x400ff000 range.&lt;BR /&gt;In addition, you get faster code execution when using the PTOR register rather than the PDOR one with a read/modify/write logic 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Complete Kinetis solutions, training and support: &lt;A href="http://www.utasker.com/kinetis.html" target="test_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;BR /&gt;Kinetis KL02/KL03/KL05:&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL02Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL02Z.html&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL03Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL03Z.html&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL05Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL05Z.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2019 21:47:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887004#M52479</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2019-03-12T21:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Clock Cycles for Task Execution Appears to be a Function of Clock Rate</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887005#M52480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a core frequency of 48 MHz:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture2.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/73506iCD736E9C763AA8FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Per your recommendation, I am now using the fast GPIO address and writing to the PTOR register. Based on the above clock mapping, I am seeing a GPIO toggle of ~332 ns (8 bus clock cycles). My code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #dd2867; font-size: large; "&gt;volatile&lt;/STRONG&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #1290c3; font-size: large; "&gt;uint32_t&lt;/STRONG&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ed7f48; font-size: large;"&gt;GPIOA_Port_Toggle_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #f9faf4; font-size: large;"&gt;(&lt;/SPAN&gt;&lt;STRONG style="color: #1290c3; font-size: large; "&gt;uint32_t&lt;/STRONG&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #f9faf4; font-size: large;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large;"&gt;0xF800000C&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large;"&gt;u&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large;"&gt;//type cast the GPIOA_PTOR address to pointer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Toggle_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;|=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x00&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Reset the register&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Toggle_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;|=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x80&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Write a 1 to GPIOA_7 // assign the value 0x080 to the pointer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Toggle_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;&amp;amp;=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x7F&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #ffbf26; font-size: large; "&gt;GPIOA_Port_Toggle_Output_Register&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;|=&lt;/SPAN&gt;&lt;SPAN style="color: #d9e8f7; font-size: large; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #6897bb; font-size: large; "&gt;0x80&lt;/SPAN&gt;&lt;SPAN style="color: #e6e6fa; font-size: large; "&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;// Write a 1 to GPIOA_7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #626262; font-size: large; "&gt;-Andrew&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2019 19:24:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887005#M52480</guid>
      <dc:creator>aboss</dc:creator>
      <dc:date>2019-03-13T19:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Clock Cycles for Task Execution Appears to be a Function of Clock Rate</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887006#M52481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using the PTOR you need to do&lt;BR /&gt;&lt;BR /&gt;PCOR = 0x80;&lt;/P&gt;&lt;P&gt;PTOR = 0x80;&lt;BR /&gt;PTOR = 0x80;&lt;BR /&gt;PTOR = 0x80;&lt;/P&gt;&lt;P&gt;and not as you are doing (read their operating description in the user's manual) - this will remove the read-modify-write and make it about 3..4x faster.&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;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Complete Kinetis solutions, training and support: &lt;A href="http://www.utasker.com/kinetis.html" target="test_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Kinetis KL02/KL03/KL05:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL02Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL02Z.html&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL03Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL03Z.html&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;- &lt;A href="http://www.utasker.com/kinetis/FRDM-KL05Z.html" target="test_blank"&gt;http://www.utasker.com/kinetis/FRDM-KL05Z.html&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2019 21:46:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Clock-Cycles-for-Task-Execution-Appears-to-be-a-Function-of/m-p/887006#M52481</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2019-03-13T21:46:23Z</dc:date>
    </item>
  </channel>
</rss>

