<?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>Wireless MCUのトピックRe: SMAC</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358120#M154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear AngelC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your feedback. Actually this does not seem to be the problem. Indeed in the test I'm performing the device that experiences this problem is only a sniffer device that never transmits wireless packets. Moreover when calling MLMERXEnableRequest()&amp;nbsp; I would get an error if smacState != mSmacStateIdle_c but in my case gErrorNoError_c is returned by the function. It seams that if UART TX ISR is active, something goes wrong during the configurations performed by MLMERXEnableRequest() or possibily during the subsequent RF RX reception process, but this error is not notified to higher layers and so the external host is not aware of this error situation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have other ideas that could help in solving this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2014 08:03:52 GMT</pubDate>
    <dc:creator>matteotrivellat</dc:creator>
    <dc:date>2014-10-29T08:03:52Z</dc:date>
    <item>
      <title>SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358118#M152</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'm using MKW01 with Radio Utility source code which can be downloaded from freescale.com. I observed that in the provided project, UART transmission is blocking, indeed we always have the following code when sending UART data to external host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(void)UartX_Transmit("hello world", 11, UartTxCallBack);&lt;/P&gt;&lt;P&gt;while (UartX_IsTxActive()); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same approach is used also when receiving a wireless packet that must be transmitted to external microcontroller. Indeed the function (void)MLMERXEnableRequest(gpSmacRxPacket, 0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is called only after UART transmission is completed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my project I would like to have a non-blocking approach for UART transmission, in other words I would use a static buffer for UART TX activities where I can copy the information to be transmitted to external host and leave the UART TX ISR to handle UART TX. With this not blocking approach it would be possible to call MLMERXEnableRequest() before UART transmission is completed. Unfortunately I observed that if I call MLMERXEnableRequest() while UART TX is in progress it seams that RX enable request is not executed properly even if it does not return any error. Indeed I'm not able to receive other wireless packets. The problem is solved if I call MLMERXDisableRequest() and MLMERXEnableRequest() again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interestingly if I protect from UART TX ISR calls both MLMERXEnableRequest() and also Phy_ISR() when it is called for the first time when receiving a new wireless packet everything works fine. In other words RF RX packet handling is successfull if I temporary disable UART TX ISR. It seams that there are some activities in the above functions and in general in RF RX packet handling that are sensitive to interruptions or delays caused by UART TX ISR. I want to underline that UART TX ISR is the short ISR provided in the source code and it has the same priority of all other ISRs called in the project. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know how to explain this behaviour? Should SMAC primitives and in general RF RX packet handling be protected from other application ISRs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 15:35:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358118#M152</guid>
      <dc:creator>matteotrivellat</dc:creator>
      <dc:date>2014-10-28T15:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358119#M153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Dear Matteo,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;You must search for flag smacState. The state of this flag when UART TX is in progress is very likely to be mSmacStateTransmitting_c. So when calling MLMERXEnableRequest(), the return from this function will be gErrorBusy_c. This happens because, in order to continue the RX process, the Radio needs to be in Idle mode smacState = mSmacStateIdle_c. Disabling and enabling RF RX works in this case because &lt;SPAN style="background: white;"&gt;MLMERXDisableRequest&lt;/SPAN&gt;() resets that flag to different value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;It is recommended that you disable the Radio interrupts when configuring it, i.e. for TX or RX mode and DIO signal settings. However, this is already handled inside the PHY primitives (i.e. PhyPlmeRxRequest) and that is how it works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Furthermore, please notice the application demo is provided as it is and the intention of it is to be a reference platform for users migrating it for their custom needs, you can certainly modify it to work with non blocking functions, but that is application specific. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Angel&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 22:50:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358119#M153</guid>
      <dc:creator>AngelC</dc:creator>
      <dc:date>2014-10-28T22:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358120#M154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear AngelC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your feedback. Actually this does not seem to be the problem. Indeed in the test I'm performing the device that experiences this problem is only a sniffer device that never transmits wireless packets. Moreover when calling MLMERXEnableRequest()&amp;nbsp; I would get an error if smacState != mSmacStateIdle_c but in my case gErrorNoError_c is returned by the function. It seams that if UART TX ISR is active, something goes wrong during the configurations performed by MLMERXEnableRequest() or possibily during the subsequent RF RX reception process, but this error is not notified to higher layers and so the external host is not aware of this error situation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have other ideas that could help in solving this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 08:03:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358120#M154</guid>
      <dc:creator>matteotrivellat</dc:creator>
      <dc:date>2014-10-29T08:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358121#M155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;Dear Matteo,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;Well, I would need to reproduce your issue locally to find out what is exactly happening. It is very likely to be a flag or missing configuration. Since I am not aware of all the changes you have done to Radio Utility source code, it would be easier to work in a different example. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;I am attaching a “Wireless UART” project I just tested. You could modify UartUtil_Tx() function called in&amp;nbsp; gWUAppStateSendDataUart_c state of WUApp_MainStateMachine() function. Whenever something is received over the air, it will be sent via UART entering this case. Normally it is a blocking function as you described before, but you could easily change not to have the while loops. I just tested that and the demo still worked without any issues. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;I am also attaching the corresponding documentation to run the demo. I would recommend you to first test it as it is and then customize it as desired. Please notice this code should be used as reference and any modification to it is totally application specific. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;I hope it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333339691162px;"&gt;&lt;SPAN style="color: #1f497d;"&gt;AngelC&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 21:13:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358121#M155</guid>
      <dc:creator>AngelC</dc:creator>
      <dc:date>2014-10-29T21:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358122#M156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear AngelC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately, so far I had no time to test the firmware you provided. Nevertheless I went deeper into the problem and I would like to share with you some new observations/considerations. The system where I implemented a non-blocking UART transmission is actually a sniffer device that transmits via UART the main parameters of each wireless packet it is able to receive. This device is deployed in a small network where 3 devices communicate together in the same channel. I observed that the RF RX problem in the sniffer device mainly arises when both UART TX ISR and RF packet reception become active in the same time period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the following I'm providing the radio register values when RF RX works properly and when RF RX seams to be blocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 786px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl22" height="17" width="222"&gt;Reg. Number [HEX format]&lt;/TD&gt;&lt;TD class="xl22" width="263"&gt;Reg. Value when RF RX OK [HEX format]&lt;/TD&gt;&lt;TD class="xl22" width="301"&gt;Reg. Value when RF RX NOT OK [HEX format]&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;36&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;10&lt;/TD&gt;&lt;TD class="xl22"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;02&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;03&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;04&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;05&lt;/TD&gt;&lt;TD class="xl22"&gt;03&lt;/TD&gt;&lt;TD class="xl22"&gt;03&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;06&lt;/TD&gt;&lt;TD class="xl22"&gt;33&lt;/TD&gt;&lt;TD class="xl22"&gt;33&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;07&lt;/TD&gt;&lt;TD class="xl22"&gt;F6&lt;/TD&gt;&lt;TD class="xl22"&gt;F6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;08&lt;/TD&gt;&lt;TD class="xl22"&gt;74&lt;/TD&gt;&lt;TD class="xl22"&gt;74&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;09&lt;/TD&gt;&lt;TD class="xl22"&gt;09&lt;/TD&gt;&lt;TD class="xl22"&gt;09&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0A&lt;/TD&gt;&lt;TD class="xl22"&gt;41&lt;/TD&gt;&lt;TD class="xl22"&gt;41&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0B&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0C&lt;/TD&gt;&lt;TD class="xl22"&gt;02&lt;/TD&gt;&lt;TD class="xl22"&gt;02&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0D&lt;/TD&gt;&lt;TD class="xl22"&gt;92&lt;/TD&gt;&lt;TD class="xl22"&gt;92&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0E&lt;/TD&gt;&lt;TD class="xl22"&gt;F5&lt;/TD&gt;&lt;TD class="xl22"&gt;F5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;0F&lt;/TD&gt;&lt;TD class="xl22"&gt;20&lt;/TD&gt;&lt;TD class="xl22"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;10&lt;/TD&gt;&lt;TD class="xl22"&gt;23&lt;/TD&gt;&lt;TD class="xl22"&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;11&lt;/TD&gt;&lt;TD class="xl22"&gt;9F&lt;/TD&gt;&lt;TD class="xl22"&gt;9F&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;12&lt;/TD&gt;&lt;TD class="xl22"&gt;09&lt;/TD&gt;&lt;TD class="xl22"&gt;09&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;13&lt;/TD&gt;&lt;TD class="xl22"&gt;1A&lt;/TD&gt;&lt;TD class="xl22"&gt;1A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;14&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;15&lt;/TD&gt;&lt;TD class="xl22"&gt;B0&lt;/TD&gt;&lt;TD class="xl22"&gt;B0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;16&lt;/TD&gt;&lt;TD class="xl22"&gt;7B&lt;/TD&gt;&lt;TD class="xl22"&gt;7B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;17&lt;/TD&gt;&lt;TD class="xl22"&gt;9B&lt;/TD&gt;&lt;TD class="xl22"&gt;9B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;18&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;88&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;A8&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;19&lt;/TD&gt;&lt;TD class="xl22"&gt;B1&lt;/TD&gt;&lt;TD class="xl22"&gt;B1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1A&lt;/TD&gt;&lt;TD class="xl22"&gt;B1&lt;/TD&gt;&lt;TD class="xl22"&gt;B1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1B&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;TD class="xl22"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1C&lt;/TD&gt;&lt;TD class="xl22"&gt;80&lt;/TD&gt;&lt;TD class="xl22"&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1D&lt;/TD&gt;&lt;TD class="xl22"&gt;06&lt;/TD&gt;&lt;TD class="xl22"&gt;06&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1E&lt;/TD&gt;&lt;TD class="xl22"&gt;10&lt;/TD&gt;&lt;TD class="xl22"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;1F&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;20&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;21&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;22&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;23&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;24&lt;/TD&gt;&lt;TD class="xl22"&gt;CD&lt;/TD&gt;&lt;TD class="xl22"&gt;A0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;25&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;88&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;48&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;26&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;27&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;D8&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;D9&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;28&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;00&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl22"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;66&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;29&lt;/TD&gt;&lt;TD class="xl22"&gt;FF&lt;/TD&gt;&lt;TD class="xl22"&gt;FF&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2A&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2B&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2C&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2D&lt;/TD&gt;&lt;TD class="xl22"&gt;03&lt;/TD&gt;&lt;TD class="xl22"&gt;03&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2E&lt;/TD&gt;&lt;TD class="xl22"&gt;98&lt;/TD&gt;&lt;TD class="xl22"&gt;98&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;2F&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;30&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;31&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;32&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;33&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;34&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;35&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;36&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;37&lt;/TD&gt;&lt;TD class="xl22"&gt;98&lt;/TD&gt;&lt;TD class="xl22"&gt;98&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;38&lt;/TD&gt;&lt;TD class="xl22"&gt;FF&lt;/TD&gt;&lt;TD class="xl22"&gt;FF&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;39&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3A&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3B&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3C&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3D&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3E&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;3F&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;40&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;41&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;42&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;43&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;44&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;45&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;46&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;47&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;48&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;49&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4A&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4B&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4C&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4D&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4E&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;TD class="xl22"&gt;01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;4F&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;57&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;58&lt;/TD&gt;&lt;TD class="xl22"&gt;2D&lt;/TD&gt;&lt;TD class="xl22"&gt;2D&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;5F&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;6F&lt;/TD&gt;&lt;TD class="xl22"&gt;30&lt;/TD&gt;&lt;TD class="xl22"&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl22" height="17"&gt;71&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;TD class="xl22"&gt;00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As already underlined in my previous posts it is necessary to call MLMERXDisableRequest() and MLMERXEnableRequest() to solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Moreover please notice that when giving a smaller priority to UART TX/RX ISR with respect to SMAC ISRs the problem does not arises.&lt;/SPAN&gt; &lt;SPAN style="text-decoration: underline;"&gt;Indeed assigning NVIC priority 0 to all SMAC ISRs and NVIC priority 1 to UART TX/RX ISRs I've never experienced the problem so far.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps in having a deeper and more clear understaing of the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 10:21:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358122#M156</guid>
      <dc:creator>matteotrivellat</dc:creator>
      <dc:date>2014-11-05T10:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358123#M157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Dear Matteo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Please notice that the SMAC projects are provided as reference and obviously do not meet all application’s requirements. For this, they are provided in source code and could be modified to meet specific application’s needs, like the non-blocking feature your application requires, but that is totally application specific. While there might be different ways to attack this issue, user is free to use the one preferred. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;I really appreciate your feedback and sharing your results. It would be helpful if you could run the code I sent so you could reproduce the same scenario using such code, but if yours already works then I guess it is not entirely necessary. Anyway, I am glad to hear you were able to implement a workaround for this specific scenario and your solution works properly. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;AngelC&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;------------------------------------------------------------------------------------------------------------------------------------------&lt;BR /&gt; Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt; -----------------------------------------------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 23:02:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358123#M157</guid>
      <dc:creator>AngelC</dc:creator>
      <dc:date>2014-11-05T23:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: SMAC</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358124#M158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matteo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to give you a head's up regarding the new KSDK based SMAC which will be launched soon. &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;The reason I'm telling you about it is because it comes with a very powerful framework including serial interface management. The package will also include demo applications such as Connectivity Test, Wireless Messenger, Wireless Uart. These demos will give you both a good startup code and also tools to calibrate and configure MKW01.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrei&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 16:31:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SMAC/m-p/358124#M158</guid>
      <dc:creator>andrei_f</dc:creator>
      <dc:date>2014-11-24T16:31:16Z</dc:date>
    </item>
  </channel>
</rss>

