<?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>LPC MicrocontrollersのトピックRe: LPC55S69 : fsl_tickless_rtc</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-fsl-tickless-rtc/m-p/981774#M38754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eugene,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are correct, If the FreeRTOS port in use does not provide a default implementation of portSUPPRESS_TICKS_AND_SLEEP(), then the application writer can provide their own implementation by defining portSUPPRESS_TICKS_AND_SLEEP() in FreeRTOSConfig.h.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the below link for more information.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.freertos.org/low-power-tickless-rtos.html"&gt;https://www.freertos.org/low-power-tickless-rtos.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also check the following thread that can give you more hints regarding this implementation.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/478743"&gt;Board low power modes, alongside Tickless FreeRTOS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Dec 2019 19:01:16 GMT</pubDate>
    <dc:creator>FelipeGarcia</dc:creator>
    <dc:date>2019-12-03T19:01:16Z</dc:date>
    <item>
      <title>LPC55S69 : fsl_tickless_rtc</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-fsl-tickless-rtc/m-p/981773#M38753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see rtos tickless example has implementation of&amp;nbsp;&lt;/P&gt;&lt;P&gt;void vPortSuppressTicksAndSleep(TickType_t xExpectedIdleTime)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it never ever is called becouse definition like this is missing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Tickless idle/low power functionality. */&lt;BR /&gt;#ifndef portSUPPRESS_TICKS_AND_SLEEP&lt;BR /&gt; extern void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime );&lt;BR /&gt; #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) vPortSuppressTicksAndSleep( xExpectedIdleTime )&lt;BR /&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please verify that example and confirm if tthat new RTOS port can be used in teckless mode ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2019 13:34:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-fsl-tickless-rtc/m-p/981773#M38753</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2019-11-27T13:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : fsl_tickless_rtc</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-fsl-tickless-rtc/m-p/981774#M38754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eugene,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are correct, If the FreeRTOS port in use does not provide a default implementation of portSUPPRESS_TICKS_AND_SLEEP(), then the application writer can provide their own implementation by defining portSUPPRESS_TICKS_AND_SLEEP() in FreeRTOSConfig.h.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the below link for more information.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.freertos.org/low-power-tickless-rtos.html"&gt;https://www.freertos.org/low-power-tickless-rtos.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also check the following thread that can give you more hints regarding this implementation.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/478743"&gt;Board low power modes, alongside Tickless FreeRTOS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2019 19:01:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-fsl-tickless-rtc/m-p/981774#M38754</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-12-03T19:01:16Z</dc:date>
    </item>
  </channel>
</rss>

