<?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: K82: Enable user access to SIM  in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938956#M54318</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; Could you please share your small test project with me, which just can reproduce the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I will test it on my FRDM-K82 board when I have time.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Please also add the &lt;SPAN&gt;CLOCK_EnableClock(kCLOCK_PortB)&lt;/SPAN&gt; which can work OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&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>Wed, 05 Jun 2019 06:45:06 GMT</pubDate>
    <dc:creator>kerryzhou</dc:creator>
    <dc:date>2019-06-05T06:45:06Z</dc:date>
    <item>
      <title>K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938952#M54314</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 have some problem when enable clock for I2C0/i2C1 driver when enable clock in SIM module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AIPS0 is configured to give access with User privileges to SIM module. But&amp;nbsp;&lt;SPAN&gt;CLOCK_EnableClock cause BusFault&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;when clock is going to be enabled for I20 or (I2C1) interfaces.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;From other side, enable clock for&amp;nbsp;CLOCK_EnableClock(kCLOCK_PortB) is not cause any problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In function&amp;nbsp; I2C_MasterInit()&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;/* Enable I2C clock. */&lt;BR /&gt;_SYSCALL(PRINTF("AIPS0-&amp;gt;PACRJ ( 0x%08lX ) - 0x%08lX\r\n", &amp;amp;AIPS0-&amp;gt;PACRJ, AIPS0-&amp;gt;PACRJ));&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-&amp;gt;&amp;nbsp;AIPS0-&amp;gt;PACRJ ( 0x40000054 ) - 0x15115500&amp;nbsp; &amp;nbsp;// OK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;STRONG&gt;//CLOCK_EnableClock(s_i2cClocks[I2C_GetInstance(base)]); // Original code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; clock_ip_name_t clock = s_i2cClocks[I2C_GetInstance(base)]; // Code split for 2 parts for detect root cause&lt;BR /&gt;PRINTF("kCLOCK_I2c0 ( 0x%08lX ) - 0x%08lX\r\n", kCLOCK_I2c0, clock);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-&amp;gt;&amp;nbsp;kCLOCK_I2c0 ( 0x10340006 ) - 0x10340006 // API OK !&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; _SYSCALL(/**/CLOCK_EnableClock(clock)/**/); // &lt;STRONG&gt;OK&amp;nbsp;in privileged mode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; CLOCK_EnableClock(kCLOCK_I2c0);&lt;/P&gt;&lt;P&gt;or&amp;nbsp;&lt;SPAN&gt;CLOCK_EnableClock(clock);&amp;nbsp; &lt;STRONG&gt;&amp;nbsp; // Bus Bault&amp;nbsp; !!!!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;// This macro is used for escalate supervisor privileged&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;#define _SYSCALL(CODE) \&lt;BR /&gt; { \&lt;BR /&gt; BaseType_t xRunningPrivileged = xPortRaisePrivilege(); \&lt;BR /&gt; CODE; \&lt;BR /&gt; vPortResetPrivilege(xRunningPrivileged); \&lt;BR /&gt; }&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It means, access to SIM is enabled with User privileges.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But call&amp;nbsp;CLOCK_EnableClock(clock);&amp;nbsp; cause Bus Fault&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BUT if I call twice&amp;nbsp; e.g with supervisor privileges and after that with User privileges :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_SYSCALL(/**/CLOCK_EnableClock(clock)/**/);&lt;/P&gt;&lt;P&gt;CLOCK_EnableClock(clock);&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;nbsp; // OK ?!!!!!!!!!!!!&lt;/STRONG&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It is also work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can it be some HW defect when twice call for enable I2C clock is really required ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Issue is repeatable all the time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But one call&amp;nbsp;&amp;nbsp;CLOCK_EnableClock(clock);&amp;nbsp; should work if SIM can be accessed in User mode.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What can be problem ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Eugene&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2019 10:22:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938952#M54314</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2019-06-03T10:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938953#M54315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="320103" data-username="yevgen.gyl@solita.fi" href="https://community.nxp.com/people/yevgen.gyl@solita.fi"&gt;Eugene Hiihtaja&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Please try this code to open the I2C0 clock in your code:&lt;/P&gt;&lt;P&gt;SIM-&amp;gt;SCGC4 |= (1&amp;lt;&amp;lt;6);&lt;/P&gt;&lt;P&gt;&amp;nbsp;Whether it still have the hardfault or not?&lt;/P&gt;&lt;P&gt;&amp;nbsp; You said, &lt;SPAN&gt;CLOCK_EnableClock(kCLOCK_PortB)&amp;nbsp; this code open the portb in the SIM doesn't have problems, it means your SIM should work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Anyway, try to use the register to enable the I2C0 directly on your side at first.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any updated information, please let me know.&lt;/SPAN&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&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, 04 Jun 2019 06:15:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938953#M54315</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-06-04T06:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938954#M54316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct settings cause BusFault as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just wondering what kind of side effect might have privilege elevation what is executed before hand :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clock_ip_name_t clock = s_i2cClocks[I2C_GetInstance(base)];&lt;BR /&gt; _SYSCALLD(/**/CLOCK_EnableClock(clock)/**/);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those double call works and privileges returns back for sure becouse it checked in macro :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define _SYSCALLD(CODE) \&lt;BR /&gt; { \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;BaseType_t xRunningPrivileged = xPortRaisePrivilege(); \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;CODE; \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;vPortResetPrivilege(xRunningPrivileged); \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;if (inSupervisorMode()) \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;{ \&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;PRINTF("FATAL : user privilege is dropped !\r\n"); \&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;panic(); \&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;} \&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int inSupervisorMode(void)&lt;BR /&gt;{&lt;BR /&gt; return !(__get_CONTROL() &amp;amp; 0x1);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some enabled caches bring this effect ? I have ftfx and L1 caches enabled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Multiple calls works as well, no Bus fault !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_SYSCALLD(/**/CLOCK_EnableClock(clock)/**/);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(kCLOCK_I2c0);&lt;BR /&gt; SIM-&amp;gt;SCGC4 |= (1&amp;lt;&amp;lt;6);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But dummy syscall dosn't help and bus fault is apears&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_SYSCALL(_PRINTF("Dummy syscall !\r\n"));&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and other clocks enabling work here as well&amp;nbsp; ! No bus fault&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clock_ip_name_t clock = s_i2cClocks[I2C_GetInstance(base)];&lt;BR /&gt; CLOCK_EnableClock(kCLOCK_PortB);&amp;nbsp;&lt;BR /&gt; CLOCK_EnableClock(kCLOCK_Lptmr1);&lt;BR /&gt; _SYSCALLD(/**/CLOCK_EnableClock(clock)/**/);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(clock);&lt;BR /&gt; CLOCK_EnableClock(kCLOCK_I2c0);&lt;BR /&gt; SIM-&amp;gt;SCGC4 |= (1&amp;lt;&amp;lt;6);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why I2c0 and 1 is different ?&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>Tue, 04 Jun 2019 07:13:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938954#M54316</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2019-06-04T07:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938955#M54317</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;2 more observations :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Disable clock call is not cause Buf Fault :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;CLOCK_DisableClock(clock);&lt;BR /&gt; _SYSCALLD(/**/CLOCK_EnableClock(clock)/**/);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If I enable I2C0 clock at main() level&amp;nbsp; e.g before OS starts&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; first EnableClocks works in task context without supervisor privileges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after that If I call&amp;nbsp;I2C_MasterDeinit() and Init again -&amp;gt; Bus fault again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like privileged call give one time permission.&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>Tue, 04 Jun 2019 07:50:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938955#M54317</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2019-06-04T07:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938956#M54318</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; Could you please share your small test project with me, which just can reproduce the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I will test it on my FRDM-K82 board when I have time.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Please also add the &lt;SPAN&gt;CLOCK_EnableClock(kCLOCK_PortB)&lt;/SPAN&gt; which can work OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&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>Wed, 05 Jun 2019 06:45:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938956#M54318</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-06-05T06:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938957#M54319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Project include RTOS-MPU extension what can't be shared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have in SDK any example of code what run with user privileges ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can try to expand it with those calls.&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, 05 Jun 2019 07:35:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938957#M54319</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2019-06-05T07:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: K82: Enable user access to SIM</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938958#M54320</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;&amp;nbsp; Thank you for your feedback.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; No, I don't have that code.&lt;/P&gt;&lt;P&gt;&amp;nbsp; So, can you add your code in the official SDK code, which can reproduce the problem, and share it with me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&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>Wed, 05 Jun 2019 07:42:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-Enable-user-access-to-SIM/m-p/938958#M54320</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-06-05T07:42:21Z</dc:date>
    </item>
  </channel>
</rss>

