<?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: MQX-Lite does not run after power-cycle in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365280#M18778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's me once again .. I think I found the solution in this topic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/335734"&gt;Is there a problem with the RTC's initialization in Processor Expert?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Dec 2014 14:56:33 GMT</pubDate>
    <dc:creator>astdom01</dc:creator>
    <dc:date>2014-12-19T14:56:33Z</dc:date>
    <item>
      <title>MQX-Lite does not run after power-cycle</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365278#M18776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I face a very strange problem (at least for me): I just startet to use MQX-Lite OS an o Kinetis L uC ( FDRM Eval-Kit ). The tasks are very simple:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void init_task(uint32_t task_init_data)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #if CONSOLE_IO_SUPPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf( "init_task start\n" );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endif&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _task_create_at( 0, SLEEPTASK_TASK, 0, SleepTask_task_stack, SLEEPTASK_TASK_STACK_SIZE );&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void sleep_task(uint32_t task_init_data)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #if CONSOLE_IO_SUPPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf( "sleep_task start\n" );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endif&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TEST_LED_TOGGLE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything runs great if I debug with CodeWarrior - I see the debug output in the console an I see the toggling led on the board. But If I power off the device and repower it - nothing happens. I have to press the reset button to start the program - then is runs great. This was not the case before I used the MQX-Lite OS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know about this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, Dominic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 09:55:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365278#M18776</guid>
      <dc:creator>astdom01</dc:creator>
      <dc:date>2014-12-19T09:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: MQX-Lite does not run after power-cycle</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365279#M18777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm, I have some additionl information now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I happens only if I have an RTC _LDD Component which is auto-initialized with enabled interrupt-service/event. This is reproducable.&lt;/LI&gt;&lt;LI&gt;It is the same if I have auto-initialitionon of the RTC_LDD component = no and I call RTC_Init( 0, TRUE ); after PE_low_level_init();&lt;/LI&gt;&lt;LI&gt;It does NOT happen if I have auto-initialitionon of the RTC_LDD component = no and I call RTC_Init( 0, TRUE ); at the beginning of my init_task&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it not allowed to use auto-initialization of the components or for some components with MQX-Lite ? Is this documented anywhere?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did setup my project without MQX-Lite in the beginning and just added a MQX component later. I did reproduce this behaviour event with a project generated by the New MQX-Lite project wizard. But is it basically no problem to convert a project to a MQX project by just adding the component or is there anything more to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any information!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, Dominic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 14:08:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365279#M18777</guid>
      <dc:creator>astdom01</dc:creator>
      <dc:date>2014-12-19T14:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: MQX-Lite does not run after power-cycle</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365280#M18778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's me once again .. I think I found the solution in this topic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/335734"&gt;Is there a problem with the RTC's initialization in Processor Expert?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 14:56:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/MQX-Lite-does-not-run-after-power-cycle/m-p/365280#M18778</guid>
      <dc:creator>astdom01</dc:creator>
      <dc:date>2014-12-19T14:56:33Z</dc:date>
    </item>
  </channel>
</rss>

