<?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 Independent Real Time Clock (IRTC) for KW40Z Connectivity in Kinetis Software Development Kit</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Independent-Real-Time-Clock-IRTC-for-KW40Z-Connectivity/m-p/609111#M6304</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IAR 7.50;&amp;nbsp; KW40Z_Connectivity_Software_1.0.1 (KSDK_1.3.0)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Kinetis SDK v.1.3 API Reference Manual&lt;/STRONG&gt;, Document Number: &lt;STRONG&gt;KSDK13APIRM&lt;/STRONG&gt; Rev. 0 Sept 2015&lt;/P&gt;&lt;P&gt;There is a reference about &lt;STRONG&gt;IRTC&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Chapter 29&amp;nbsp; Independent Real Time Clock (&lt;STRONG&gt;IRTC&lt;/STRONG&gt;)&lt;BR /&gt;29.1 Overview&lt;BR /&gt;The Kinetis SDK provides both HAL and Peripheral drivers for the Independent Real Time Clock (IRTC)&lt;BR /&gt;block of Kinetis devices.&lt;/P&gt;&lt;P&gt;28.10 IRTC HAL driver&lt;BR /&gt;28.10.1 Overview&lt;BR /&gt;28.11 IRTC Peripheral Driver&lt;BR /&gt;28.11.1 Overview&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The files can be found in KSDK platform release:&lt;/P&gt;&lt;P&gt;KSDK_1.3.0\platform\hal\src\irtc\fsl_irtc_hal.c&lt;BR /&gt;KSDK_1.3.0\platform\hal\inc\fsl_irtc_hal.h&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But are &lt;STRONG&gt;not integrated&lt;/STRONG&gt; (are missing) in Connectivity framework release:&lt;/P&gt;&lt;P&gt;KW40Z_Connectivity_Software_1.0.1\KSDK_1.3.0\platform\hal\src&lt;BR /&gt;KW40Z_Connectivity_Software_1.0.1\KSDK_1.3.0\platform\hal\inc&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can these &lt;STRONG&gt;IRTC&lt;/STRONG&gt; drivers be used for &lt;STRONG&gt;MKW30Z&lt;/STRONG&gt; with the &lt;STRONG&gt;Connectivity Software 1.0.1&lt;/STRONG&gt; ?&lt;/P&gt;&lt;P&gt;Should additional set-up be done for that ?&lt;/P&gt;&lt;P&gt;The IRTC lib is fully supported by this framework ?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Examples:&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;SPAN class=""&gt;irtc_datetime_t &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;datetimeToSet;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_Init&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;year &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 2013;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;month &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 10;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;day &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 13;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;hour &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 18;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;minute &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 55;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;second &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 30;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #800000;"&gt;// set the datetime //&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;result = &lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_SetDatetime&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0, &amp;amp;datetime);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #800000;"&gt;// get datetime //&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_GetDatetime&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0, &amp;amp;datetime);&lt;BR /&gt;printf(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;"Current datetime: %04hd-%02hd-%02hd %02hd:%02hd:%02hd&lt;/SPAN&gt;&lt;SPAN class=""&gt;n&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;r&lt;/SPAN&gt;&lt;SPAN class=""&gt;n&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;n"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;,&lt;BR /&gt;datetime.year, datetime.month, datetime.day, datetime.hour, datetime.minute, datetime.second);&lt;/SPAN&gt;&lt;/EM&gt; &lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;SPAN class="" style="color: #800000;"&gt;// alarm set //&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt; &lt;SPAN class=""&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;year &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;year&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;month &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;month&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;day &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;day&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;minute &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;minute &lt;/SPAN&gt;&lt;SPAN class=""&gt;+ 5;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;second &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;second&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_DRV_SetAlarm&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, &amp;amp;alrmTimeToSet);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_DRV_SetAlarmMatchMode&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;kIRTCSecMinHourDayMonYear&lt;/SPAN&gt;&lt;SPAN class=""&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_HAL_SetIntCmd&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, kIRTCAlarmIntFlag);&lt;/SPAN&gt; &lt;BR style="font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" /&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lucian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2017 11:05:45 GMT</pubDate>
    <dc:creator>lucianfiran</dc:creator>
    <dc:date>2017-02-07T11:05:45Z</dc:date>
    <item>
      <title>Independent Real Time Clock (IRTC) for KW40Z Connectivity</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Independent-Real-Time-Clock-IRTC-for-KW40Z-Connectivity/m-p/609111#M6304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IAR 7.50;&amp;nbsp; KW40Z_Connectivity_Software_1.0.1 (KSDK_1.3.0)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Kinetis SDK v.1.3 API Reference Manual&lt;/STRONG&gt;, Document Number: &lt;STRONG&gt;KSDK13APIRM&lt;/STRONG&gt; Rev. 0 Sept 2015&lt;/P&gt;&lt;P&gt;There is a reference about &lt;STRONG&gt;IRTC&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Chapter 29&amp;nbsp; Independent Real Time Clock (&lt;STRONG&gt;IRTC&lt;/STRONG&gt;)&lt;BR /&gt;29.1 Overview&lt;BR /&gt;The Kinetis SDK provides both HAL and Peripheral drivers for the Independent Real Time Clock (IRTC)&lt;BR /&gt;block of Kinetis devices.&lt;/P&gt;&lt;P&gt;28.10 IRTC HAL driver&lt;BR /&gt;28.10.1 Overview&lt;BR /&gt;28.11 IRTC Peripheral Driver&lt;BR /&gt;28.11.1 Overview&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The files can be found in KSDK platform release:&lt;/P&gt;&lt;P&gt;KSDK_1.3.0\platform\hal\src\irtc\fsl_irtc_hal.c&lt;BR /&gt;KSDK_1.3.0\platform\hal\inc\fsl_irtc_hal.h&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But are &lt;STRONG&gt;not integrated&lt;/STRONG&gt; (are missing) in Connectivity framework release:&lt;/P&gt;&lt;P&gt;KW40Z_Connectivity_Software_1.0.1\KSDK_1.3.0\platform\hal\src&lt;BR /&gt;KW40Z_Connectivity_Software_1.0.1\KSDK_1.3.0\platform\hal\inc&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can these &lt;STRONG&gt;IRTC&lt;/STRONG&gt; drivers be used for &lt;STRONG&gt;MKW30Z&lt;/STRONG&gt; with the &lt;STRONG&gt;Connectivity Software 1.0.1&lt;/STRONG&gt; ?&lt;/P&gt;&lt;P&gt;Should additional set-up be done for that ?&lt;/P&gt;&lt;P&gt;The IRTC lib is fully supported by this framework ?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Examples:&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;SPAN class=""&gt;irtc_datetime_t &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;datetimeToSet;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_Init&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;year &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 2013;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;month &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 10;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;day &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 13;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;hour &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 18;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;minute &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 55;&lt;BR /&gt;datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class=""&gt;second &lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;= 30;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #800000;"&gt;// set the datetime //&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;result = &lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_SetDatetime&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0, &amp;amp;datetime);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #800000;"&gt;// get datetime //&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;IRTC_DRV_GetDatetime&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;(0, &amp;amp;datetime);&lt;BR /&gt;printf(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;"Current datetime: %04hd-%02hd-%02hd %02hd:%02hd:%02hd&lt;/SPAN&gt;&lt;SPAN class=""&gt;n&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;r&lt;/SPAN&gt;&lt;SPAN class=""&gt;n&lt;/SPAN&gt;&lt;SPAN class="" style="color: #002040;"&gt;n"&lt;/SPAN&gt;&lt;SPAN class="" style="color: #000000;"&gt;,&lt;BR /&gt;datetime.year, datetime.month, datetime.day, datetime.hour, datetime.minute, datetime.second);&lt;/SPAN&gt;&lt;/EM&gt; &lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt;&lt;SPAN class="" style="color: #800000;"&gt;// alarm set //&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="" style="color: #000000;"&gt; &lt;SPAN class=""&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;year &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;year&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;month &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;month&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;day &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;day&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;minute &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;minute &lt;/SPAN&gt;&lt;SPAN class=""&gt;+ 5;&lt;BR /&gt;alrmTimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;second &lt;/SPAN&gt;&lt;SPAN class=""&gt;= datetimeToSet.&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;second&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_DRV_SetAlarm&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, &amp;amp;alrmTimeToSet);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_DRV_SetAlarmMatchMode&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;kIRTCSecMinHourDayMonYear&lt;/SPAN&gt;&lt;SPAN class=""&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;IRTC_HAL_SetIntCmd&lt;/SPAN&gt;&lt;SPAN class=""&gt;(0, kIRTCAlarmIntFlag);&lt;/SPAN&gt; &lt;BR style="font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" /&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lucian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 11:05:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Independent-Real-Time-Clock-IRTC-for-KW40Z-Connectivity/m-p/609111#M6304</guid>
      <dc:creator>lucianfiran</dc:creator>
      <dc:date>2017-02-07T11:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Real Time Clock (IRTC) for KW40Z Connectivity</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Independent-Real-Time-Clock-IRTC-for-KW40Z-Connectivity/m-p/609112#M6305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lucian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This post is related to this one: &lt;A href="https://community.nxp.com/thread/443993"&gt;MKW30Z; KSDK board disable hw RTC&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to use LPO as source clock for the RTC, you don't need to change RTC drivers ( to IRTC), you can change the clock source when they call BOARD_ClockInit, as I mentioned you in the other thread, here you can find a BOARD_InitRtcOsc(); which enable the OSC with the RTC. This IRTC is mostly used with Kinetis M family, thats why KW doesn't implement them in the connectivity software.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope this information helps you&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jorge Alcala&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Thu, 16 Feb 2017 22:16:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/Independent-Real-Time-Clock-IRTC-for-KW40Z-Connectivity/m-p/609112#M6305</guid>
      <dc:creator>jorge_a_vazquez</dc:creator>
      <dc:date>2017-02-16T22:16:42Z</dc:date>
    </item>
  </channel>
</rss>

