<?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: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef in S32K</title>
    <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028482#M45127</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230291"&gt;@pb632146&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;The test delays used in examples&amp;nbsp;are primarily for demonstration purposes and but are not recommended for final implementations as they are blocking, and their theoretical delay value are only rough estimates.&lt;/P&gt;
&lt;P&gt;As mentioned in the community post, to add the Osif System Timer Clock Reference,&amp;nbsp; you need to include the Mcu module in the MCAL.&amp;nbsp;Alternatively, instead of adding a System Timer Clock Reference, you can directly use the Timer Clock Frequency, which is by default of 48MHz on the S32K344 device. Additionally, I suggest to refer to the S32K3xx Reference Manual available at &lt;A href="https://www.nxp.com/products/S32K3" target="_blank" rel="noopener"&gt;S32K3 Microcontrollers for Automotive General Purpose&lt;/A&gt;&amp;nbsp;to check&amp;nbsp; the default system clock frequency and the available clock sources for each S32K3 device.&lt;/P&gt;
&lt;P&gt;Regarding the delay you mentioned,&amp;nbsp;a delay with a value of 4,800,000 with the 48MHz internal clock would theoretically result in a delay &amp;gt; 0.1 seconds. However,&amp;nbsp;this value will be always bigger since instructions take more than one clock cycle to execute.&amp;nbsp;For better accuracy, I suggest to use the Osif functions available by including Osif.h library to your project once configured as seen on the community post you shared, where you can find a blocking delay function with a better precision.&lt;/P&gt;
&lt;P&gt;If you are interested in measuring your program’s runtime more accurately, you can configure a timer with a known value, increment a counter on each interrupt, and use this to estimate the runtime. Alternatively, you can toggle a GPIO pin at the start and end of the section you wish to measure and then observe the duration of the signal with an oscilloscope.&lt;/P&gt;
&lt;P&gt;Please let me know if you have more doubts.&lt;/P&gt;
&lt;P&gt;- RomanVR.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jan 2025 18:09:50 GMT</pubDate>
    <dc:creator>RomanVR</dc:creator>
    <dc:date>2025-01-15T18:09:50Z</dc:date>
    <item>
      <title>Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2027127#M45064</link>
      <description>&lt;P&gt;Hello, all the example codes use for loops for their delay functions and I do not know how reliable these would be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/t5/S32K/Delay-function-using-OSIF/td-p/1946299" target="_blank"&gt;https://community.nxp.com/t5/S32K/Delay-function-using-OSIF/td-p/1946299&lt;/A&gt;&lt;/P&gt;&lt;P&gt;However I am unable to actually add a value instead it gives me a blank drop down menu.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_0-1736819118610.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319366iCCE3486246802923/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_0-1736819118610.png" alt="pb632146_0-1736819118610.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If I end up needing to use the simple for loop + counter method, there is a bit of confusion I have there too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_1-1736819260628.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319367i3C9B07617FE4EEC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_1-1736819260628.png" alt="pb632146_1-1736819260628.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_2-1736819272824.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319368i804389CA3917E6AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_2-1736819272824.png" alt="pb632146_2-1736819272824.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_3-1736819304470.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319369iC5E4B5A0D2452D0B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_3-1736819304470.png" alt="pb632146_3-1736819304470.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The internal clock of the mcu 48MHz or 16MHz? I thought this delay function was supposed to be 1 second flickering but it would be either 0.1 or 0.3 respectively. I want to convert my delay function to miliseconds for usability reasons but I can not really tell what my "base clock" I am working off of even is.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 01:50:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2027127#M45064</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-14T01:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2027214#M45069</link>
      <description>&lt;P&gt;Actually how do I track non blocking how many miliseconds or seconds the current program has been running, or barring that just time/date stamps.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 03:09:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2027214#M45069</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-14T03:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028482#M45127</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230291"&gt;@pb632146&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;The test delays used in examples&amp;nbsp;are primarily for demonstration purposes and but are not recommended for final implementations as they are blocking, and their theoretical delay value are only rough estimates.&lt;/P&gt;
&lt;P&gt;As mentioned in the community post, to add the Osif System Timer Clock Reference,&amp;nbsp; you need to include the Mcu module in the MCAL.&amp;nbsp;Alternatively, instead of adding a System Timer Clock Reference, you can directly use the Timer Clock Frequency, which is by default of 48MHz on the S32K344 device. Additionally, I suggest to refer to the S32K3xx Reference Manual available at &lt;A href="https://www.nxp.com/products/S32K3" target="_blank" rel="noopener"&gt;S32K3 Microcontrollers for Automotive General Purpose&lt;/A&gt;&amp;nbsp;to check&amp;nbsp; the default system clock frequency and the available clock sources for each S32K3 device.&lt;/P&gt;
&lt;P&gt;Regarding the delay you mentioned,&amp;nbsp;a delay with a value of 4,800,000 with the 48MHz internal clock would theoretically result in a delay &amp;gt; 0.1 seconds. However,&amp;nbsp;this value will be always bigger since instructions take more than one clock cycle to execute.&amp;nbsp;For better accuracy, I suggest to use the Osif functions available by including Osif.h library to your project once configured as seen on the community post you shared, where you can find a blocking delay function with a better precision.&lt;/P&gt;
&lt;P&gt;If you are interested in measuring your program’s runtime more accurately, you can configure a timer with a known value, increment a counter on each interrupt, and use this to estimate the runtime. Alternatively, you can toggle a GPIO pin at the start and end of the section you wish to measure and then observe the duration of the signal with an oscilloscope.&lt;/P&gt;
&lt;P&gt;Please let me know if you have more doubts.&lt;/P&gt;
&lt;P&gt;- RomanVR.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 18:09:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028482#M45127</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2025-01-15T18:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028554#M45130</link>
      <description>I am realizing that I was supposed to add the instance of "OsIfTimerClockFreq" if I did not want to add the MCU layer, but where do I enable that? I do not see it as an available dropdown. Or is that something not available anymore?</description>
      <pubDate>Wed, 15 Jan 2025 22:27:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028554#M45130</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-15T22:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028560#M45131</link>
      <description>I did add the MCU unit just to test the clock but running the sample code with 1000ms delay it toggles the led every 3 seconds instead of 1. What could be causing this?</description>
      <pubDate>Wed, 15 Jan 2025 22:48:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028560#M45131</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-15T22:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028567#M45132</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_0-1736982082585.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319756i618C158EA497F2FC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_0-1736982082585.png" alt="pb632146_0-1736982082585.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_1-1736982094158.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319757i98AAA205DFB714D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_1-1736982094158.png" alt="pb632146_1-1736982094158.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_2-1736982110710.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319758iAF1E16BD8EC314B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_2-1736982110710.png" alt="pb632146_2-1736982110710.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_3-1736982118160.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319759i8CEF38FFD60FC7BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_3-1736982118160.png" alt="pb632146_3-1736982118160.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_4-1736982124020.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319760i6925691F8AC479A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_4-1736982124020.png" alt="pb632146_4-1736982124020.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 23:02:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028567#M45132</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-15T23:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028797#M45147</link>
      <description>&lt;P&gt;While the code offer microseconds to ticks, to get the other way around I would want to convert the 160MHz to 1MHz so just divide by 160 correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_0-1737012358162.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/319822iEC255F3CFAE5A2CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_0-1737012358162.png" alt="pb632146_0-1737012358162.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 07:26:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2028797#M45147</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-16T07:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2029926#M45218</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230291"&gt;@pb632146&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Due to the fact that your MCU is configured with the PLL Clock (160MHz), I recommend adding the following line to your code: &lt;BR /&gt;Clock_Ip_Init(&amp;amp;Mcu_aClockConfigPB[0]); &lt;BR /&gt;Additionally, ensure you include "Clock_Ip.h" library. this will update the clock reference for all the MCU modules and registers.&lt;/P&gt;
&lt;P&gt;Regarding your question: "While the code offer microseconds to ticks, to get the other way around I would want to convert the 160MHz to 1MHz so just divide by 160 correct?"&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;If you want to convert ticks to microseconds, you can do this by the following equation:&amp;nbsp;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RomanVR_3-1737138100366.png" style="width: 91px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320117i89DF81269FE5BA7B/image-dimensions/91x45?v=v2" width="91" height="45" role="button" title="RomanVR_3-1737138100366.png" alt="RomanVR_3-1737138100366.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;SPAN&gt;considering a clock frequency of 160MHz.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;If you want to change your clock frequency to 1MHz you need to adjust the clock&amp;nbsp; dividers as shown in the image below:&lt;BR /&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RomanVR_4-1737138177959.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320118iC7CD9A59FA5C269E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RomanVR_4-1737138177959.png" alt="RomanVR_4-1737138177959.png" /&gt;&lt;/span&gt;
&lt;P&gt;However, I recommend not to do this if you need the MCU for high speed applications. Also you can refer to the Chapter 24 of the S32K3XX Reference Manual to check the maximum clock ratings of each S32K3 device.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To enable the OsIf System Timer Clock Frequency to avoid adding the MCU driver, you can find it under the OsIfSystemTimerClockFreq if in Design Studio 3.5 with RTD 5.0.0&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RomanVR_5-1737138248033.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320119iEDB709F919628525/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RomanVR_5-1737138248033.png" alt="RomanVR_5-1737138248033.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please also share with us your&amp;nbsp;development environment (Design Studio, RTD, etc.) to assist you further.&amp;nbsp;Sometimes the location of certain fields may change depending on the RTD and/or the Design Studio version.&lt;/P&gt;
&lt;P&gt;Please let me know if this helps and if you have more doubts.&lt;/P&gt;
&lt;P&gt;- RomanVR.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 18:25:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2029926#M45218</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2025-01-17T18:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2030021#M45224</link>
      <description>&lt;P&gt;I only want to convert ticks to micro/mili/seconds not change the clock frequency so the formula confirmation is appreciated, but wouldn't that formula&amp;nbsp; convert ticks to seconds not microseconds since MHz is cycles per second.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically if I have 160Mhz then : 160 ticks = 1us, 160 * 1000 = 1ms, and 160 * 1000 * 1000 = 1 second correct?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am on S32DS 3.5 but my rtd only appears to be version 3.0.0? I do not see any way to update to 5.0.0&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_0-1737165648100.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320152i8443D7099868DAB5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_0-1737165648100.png" alt="pb632146_0-1737165648100.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also&amp;nbsp;&lt;SPAN&gt;Clock_Ip_Init(&amp;amp;Mcu_aClockConfigPB[0]); previously worked but now does not as it sees mcu_aclockconfigpb as undeclared and I do not know what changed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pb632146_1-1737165868439.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320153i035735463C7D2D57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pb632146_1-1737165868439.png" alt="pb632146_1-1737165868439.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have attached my project folder though I do not know how to export my entire&amp;nbsp; development environment settings to help further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jan 2025 02:13:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2030021#M45224</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-18T02:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031635#M45328</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230291"&gt;@pb632146&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologies for my typo in the formula. You are correct, it will convert ticks to seconds. Therefore, you can just multiply by 1,000,000 or divide the ticks by 160 just as you mention.&lt;/P&gt;
&lt;P&gt;To update to RTD 5.0.0, you must first uninstall the RTD 3.0.0 and then download the updatesite of version 5.0.0. Below is a step-by-step guide to assist you:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Uninstalling RTD 3.0.0:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;In the "S32DS Extensions and Updates" menu, locate and select every package related to RTD 3.0.0.&lt;/LI&gt;
&lt;LI&gt;Click the uninstall button to remove them.&lt;/LI&gt;
&lt;LI&gt;To confirm the uninstallation, check that the packages no longer appear in the Installation Details menu, located above the Cancel button.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="RomanVR_0-1737480282480.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320658iD98432D4DD3C1790/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RomanVR_0-1737480282480.png" alt="RomanVR_0-1737480282480.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Downloading and Installing RTD 5.0.0:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to "&lt;A href="https://nxp.flexnetoperations.com/control/frse/product?child_plneID=830617" target="_blank" rel="noopener"&gt;Automotive SW - S32K3/S32M27x - Real-Time Drivers for Cortex-M&lt;/A&gt;&lt;STRONG&gt;".&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Select "S32K3_S32M27x Real-Time Drivers ASR R21-11 Version 5.0.0" and download the zip file named: "SW32K3_S32M27x_RTD_R21-11_5.0.0_D2410_DesignStudio_updatesite".&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Open your S32DS Extensions and Updates Menu and click on "Add Update Sites".&lt;/LI&gt;
&lt;LI&gt;Once added, the update site will be available for installation under the list of available packages.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code Update:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Please replace the following line of code with:&lt;/P&gt;
&lt;P&gt;"Clock_Ip_Init(&amp;amp;Mcu_aClockConfigPB_BOARD_InitPeripherals[0]);"&lt;/P&gt;
&lt;P&gt;This&amp;nbsp;how the clock configuration structure is defined in your project.&lt;/P&gt;
&lt;P&gt;Let me know if this helps and if you have more doubts.&lt;/P&gt;
&lt;P&gt;- RomanVR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 17:29:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031635#M45328</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2025-01-21T17:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031657#M45332</link>
      <description>The clock works correctly now thank you!&lt;BR /&gt;&lt;BR /&gt;Are there any issues that I might run into by uninstalling RTD and replacing it in my current environment?</description>
      <pubDate>Tue, 21 Jan 2025 18:31:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031657#M45332</guid>
      <dc:creator>pb632146</dc:creator>
      <dc:date>2025-01-21T18:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Delay function with and without OsIf? How do I enable OsIfSystemTimerClockRef</title>
      <link>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031707#M45334</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230291"&gt;@pb632146&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad that the information helped.&lt;/P&gt;
&lt;P&gt;By updating the RTD version, I strongly suggest to check your applications configurations, since the location of certain configuration fields and/or definitions may change and the code will not compile.&lt;/P&gt;
&lt;P&gt;- RomanVR.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 20:55:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Delay-function-with-and-without-OsIf-How-do-I-enable/m-p/2031707#M45334</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2025-01-21T20:55:30Z</dc:date>
    </item>
  </channel>
</rss>

