<?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>S32K中的主题 Re: issue:s32k144 CAN0 Rx With Fifo DMA</title>
    <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029840#M6458</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I need to know some details about this issue, what version of SDK release did you use ? Based on code&amp;nbsp;snippets from pictures it looks like an previous code version from RTM 303.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second we don't support driver modifications by customers only for special quotes and requested features.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/cuongtranmanh"&gt;cuongtranmanh&lt;/A&gt;‌, can you check if in last release is an issue mentioned by&amp;nbsp;&lt;SPAN&gt;Manuj.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;BR /&gt;Alexandru Nan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2020 06:54:52 GMT</pubDate>
    <dc:creator>alexandrunan</dc:creator>
    <dc:date>2020-06-02T06:54:52Z</dc:date>
    <item>
      <title>issue:s32k144 CAN0 Rx With Fifo DMA</title>
      <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029837#M6455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to Receive 2 CAN messages with CAN0,I use the Fifo with DMA.&lt;/P&gt;&lt;P&gt;I modify on the “Example S32K144 FlexCAN RXFIFO DMA S32DS.ARM.2018.R1”.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-343091"&gt;Example S32K144 FlexCAN RXFIFO DMA S32DS.ARM.2018.R1&lt;/A&gt;&amp;nbsp;；&lt;/P&gt;&lt;P&gt;The main&amp;nbsp;configuration&amp;nbsp;as flows:&lt;/P&gt;&lt;P&gt;1、filter table&lt;/P&gt;&lt;P&gt;void J1939_CAN0_init(void)&lt;BR /&gt; {&lt;BR /&gt; YCECU2FDM1.id=0x18F2E100 ;&lt;BR /&gt; YCECU2FDM2.id=0x14FD3E83 ;&lt;BR /&gt; /*--第0个报文匹配--*/&lt;BR /&gt; filterTable[0].isRemoteFrame = false;&lt;BR /&gt; filterTable[0].isExtendedFrame =true;&lt;BR /&gt; filterTable[0].id = YCECU2FDM1.id ;&lt;BR /&gt; /*--第1个报文匹配--*/&lt;BR /&gt; filterTable[1].isRemoteFrame = false;&lt;BR /&gt; filterTable[1].isExtendedFrame = true;&lt;BR /&gt; filterTable[1].id = YCECU2FDM2.id ;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;2、Initialization&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*Initialize eDMA driver */&lt;BR /&gt; EDMA_DRV_Init(&amp;amp;dmaController1_State, &amp;amp;dmaController1_InitConfig0, edmaChnStateArray, edmaChnConfigArray, EDMA_CONFIGURED_CHANNELS_COUNT);&lt;/P&gt;&lt;P&gt;/*Initialize FlexCAN driver */&lt;BR /&gt; FLEXCAN_DRV_Init(INST_CANCOM1, &amp;amp;canCom1_State, &amp;amp;canCom1_InitConfig0);&lt;BR /&gt; /* Install callback function */&lt;BR /&gt; FLEXCAN_DRV_InstallEventCallback(INST_CANCOM1, flexcan0_Callback, NULL);&lt;/P&gt;&lt;P&gt;/* Set information about the data to be received */&lt;BR /&gt; flexcan_data_info_t dataInfo =&lt;BR /&gt; {&lt;BR /&gt; .data_length = 1U,&lt;BR /&gt; .msg_id_type = FLEXCAN_MSG_ID_STD,&lt;BR /&gt; .enable_brs = false,&lt;BR /&gt; .fd_enable = false,&lt;BR /&gt; .fd_padding = 0U&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;/* Configure RX message buffer with index RX_MSG_ID and RX_MAILBOX */&lt;BR /&gt; FLEXCAN_DRV_ConfigRxMb(INST_CANCOM1, RX_MAILBOX, &amp;amp;dataInfo, RX_MSG_ID);&lt;/P&gt;&lt;P&gt;J1939_CAN0_init();&lt;BR /&gt; /* Configure RX FIFO ID filter table elements based on filter table defined above*/&lt;BR /&gt; FLEXCAN_DRV_ConfigRxFifo(INST_CANCOM1, FLEXCAN_RX_FIFO_ID_FORMAT_A, filterTable);&lt;BR /&gt; /* set individual masking type */&lt;BR /&gt; FLEXCAN_DRV_SetRxMaskType(INST_CANCOM1, FLEXCAN_RX_MASK_INDIVIDUAL);&lt;BR /&gt; /* first 14 filter items are masked with RXIMR0-RXIMR9 */&lt;BR /&gt; for(id_counter=0;id_counter&amp;lt;10;id_counter++)&lt;BR /&gt; FLEXCAN_DRV_SetRxIndividualMask(INST_CANCOM1, FLEXCAN_MSG_ID_EXT, id_counter, 0xffffffff);&lt;BR /&gt; /* rest of filter items are masked with RXFGMASK */&lt;BR /&gt; FLEXCAN_DRV_SetRxFifoGlobalMask(INST_CANCOM1, FLEXCAN_MSG_ID_EXT, 0xffffffff);&lt;/P&gt;&lt;P&gt;/* set mask affecting MB10 */&lt;BR /&gt; FLEXCAN_DRV_SetRxIndividualMask(INST_CANCOM1, FLEXCAN_MSG_ID_EXT, RX_MAILBOX, 0xFFFFFFFF);&lt;/P&gt;&lt;P&gt;/* Start receiving data in RX_MAILBOX. */&lt;BR /&gt; FLEXCAN_DRV_Receive(INST_CANCOM1, RX_MAILBOX, &amp;amp;recvBuff1);&lt;BR /&gt; /* Start receiving data in RX_RXFIFO. */&lt;BR /&gt;FLEXCAN_DRV_RxFifo(INST_CANCOM1,&amp;amp;recvBuff2);&lt;/P&gt;&lt;P&gt;3、call back&lt;/P&gt;&lt;P&gt;void flexcan0_Callback(uint8_t instance, flexcan_event_type_t eventType,uint32_t buffIdx,&lt;BR /&gt; flexcan_state_t *flexcanState)&lt;BR /&gt;{&lt;BR /&gt; (void)flexcanState;&lt;BR /&gt; (void)instance;&lt;BR /&gt; (void)buffIdx;&lt;BR /&gt; uint8_t idx;&lt;/P&gt;&lt;P&gt;switch(eventType)&lt;BR /&gt; {&lt;BR /&gt; case FLEXCAN_EVENT_RX_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt; rxMBdone = 1;&lt;BR /&gt; }&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_RXFIFO_COMPLETE:&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_DMA_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt; if(recvBuff2.msgId==YCECU2FDM1.id)&lt;BR /&gt; {&lt;BR /&gt; for(idx=0;idx&amp;lt;recvBuff2.dataLen;idx++)&lt;BR /&gt; YCECU2FDM1.Data[idx]=recvBuff2.data[idx];&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;if(recvBuff2.msgId==YCECU2FDM2.id)&lt;BR /&gt; {&lt;BR /&gt; for(idx=0;idx&amp;lt;recvBuff2.dataLen;idx++)&lt;BR /&gt; YCECU2FDM2.Data[idx]=recvBuff2.data[idx];&lt;BR /&gt; }&lt;BR /&gt; &lt;STRONG&gt;rxFIFOdone=1;&lt;/STRONG&gt;&lt;BR /&gt; }&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_TX_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt;}&lt;BR /&gt; break;&lt;BR /&gt; default:&lt;BR /&gt; break;&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;4、The "while"loop:&lt;/P&gt;&lt;P&gt;while(1)&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(rxFIFOdone==1)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; rxFIFOdone=0;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;FLEXCAN_DRV_RxFifo(INST_CANCOM1,&amp;amp;recvBuff2);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; }&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;The project can receive the two CAN messages&amp;nbsp;correctly.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But when I modify&amp;nbsp; the "callback" and the "while loop" as flow, the project can only receive the two messages once and the project seems&amp;nbsp;halt.I guess the problem&amp;nbsp;is the interrupt, so&amp;nbsp;What could be the cause?&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3、callback&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;void flexcan0_Callback(uint8_t instance, flexcan_event_type_t eventType,uint32_t buffIdx,&lt;BR /&gt; flexcan_state_t *flexcanState)&lt;BR /&gt;{&lt;BR /&gt; (void)flexcanState;&lt;BR /&gt; (void)instance;&lt;BR /&gt; (void)buffIdx;&lt;BR /&gt; uint8_t idx;&lt;/P&gt;&lt;P&gt;switch(eventType)&lt;BR /&gt; {&lt;BR /&gt; case FLEXCAN_EVENT_RX_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt; rxMBdone = 1;&lt;BR /&gt; }&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_RXFIFO_COMPLETE:&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_DMA_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt; if(recvBuff2.msgId==YCECU2FDM1.id)&lt;BR /&gt; {&lt;BR /&gt; for(idx=0;idx&amp;lt;recvBuff2.dataLen;idx++)&lt;BR /&gt; YCECU2FDM1.Data[idx]=recvBuff2.data[idx];&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;if(recvBuff2.msgId==YCECU2FDM2.id)&lt;BR /&gt; {&lt;BR /&gt; for(idx=0;idx&amp;lt;recvBuff2.dataLen;idx++)&lt;BR /&gt; YCECU2FDM2.Data[idx]=recvBuff2.data[idx];&lt;BR /&gt; }&lt;BR /&gt; &lt;STRONG&gt;//rxFIFOdone=1;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; FLEXCAN_DRV_RxFifo(INST_CANCOM1,&amp;amp;recvBuff2);&lt;/STRONG&gt;&lt;BR /&gt; }&lt;BR /&gt; break;&lt;BR /&gt; case FLEXCAN_EVENT_TX_COMPLETE:&lt;BR /&gt; {&lt;BR /&gt; CANFillBufferTx();&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; break;&lt;BR /&gt; default:&lt;BR /&gt; break;&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;4、while loop&lt;/P&gt;&lt;P&gt;while(1)&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Feb 2020 15:45:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029837#M6455</guid>
      <dc:creator>cqhcau</dc:creator>
      <dc:date>2020-02-02T15:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: issue:s32k144 CAN0 Rx With Fifo DMA</title>
      <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029838#M6456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We don't encourage using calls of driver APIs from callbacks, the callback are done for signaling driver states.&amp;nbsp;&lt;BR /&gt;The showed issue is well known and a fix will be provided with S32K1xx RTM 3.0.3. A correct use is as scenario 1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second scenario is not valid in this case because after callback finish execution the driver will modify the status of the Rx MB Fifo as complete in accordance with the first message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2020 13:57:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029838#M6456</guid>
      <dc:creator>alexandrunan</dc:creator>
      <dc:date>2020-02-03T13:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: issue:s32k144 CAN0 Rx With Fifo DMA</title>
      <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029839#M6457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/alexandrunan"&gt;alexandrunan&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have faced a similar issue and trying to find a workaround as we cannot have a while loop to check EVENT_DMA_COMPLETE in our application.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After going through the driver's code, here is what I found:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FLEXCAN_CompleteRxMessageFifoData() is the function which calls the user callback on DMA completion and passes&amp;nbsp;FLEXCAN_EVENT_DMA_COMPLETE as the event type to the user callback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108684iD8C2D5F2C1273FDA/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108685iF2591AD43B48369B/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FLEXCAN_CompleteRxMessageFifoData() then returns to the parent function&amp;nbsp;FLEXCAN_IRQHandlerRxFIFO() and after a few lines of code, the user callback is called again, but this time with&amp;nbsp;FLEXCAN_EVENT_RXFIFO_COMPLETE event type. Hence, I assumed that at each RX_FIFO receive event with DMA, user callback will be called two times.&amp;nbsp;After the user callback&amp;nbsp;returns&amp;nbsp;for the second time, &lt;SPAN&gt;FLEXCAN_IRQHandlerRxFIFO() function does not&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;modify the status of the Rx MB Fifo as complete in accordance with the first message (it does that after the first call).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f; "&gt;Therefore, I tried check for&amp;nbsp;&lt;SPAN style="color: #3d3d3d;"&gt;FLEXCAN_EVENT_RXFIFO_COMPLETE event instead of&amp;nbsp;FLEXCAN_EVENT_DMA_COMPLETE in the event, like this:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108686iA41EC29D6C9CB470/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;But, but didn't get the second call of my callback. Practically, my&amp;nbsp;callback was called only once with&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;FLEXCAN_EVENT_DMA_COMPLETE&amp;nbsp;after I ran the code. I tried with a breakpoint too at "RxFIFOdone = 1;", the code didn't stop.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;Can you tell me if I am correct in my approach?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;As a temporary fix (which works without while loop), I&amp;nbsp;have modified the&amp;nbsp;FLEXCAN_CompleteRxMessageFifoData() function by calling my callback again at the end with&amp;nbsp;FLEXCAN_EVENT_RXFIFO_COMPLETE event; as shown in the image below.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; "&gt;Can the temporary fix be a permanent solution too? Or you can help me debug&amp;nbsp;my first approach?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108687i76190BBD131C00F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_6.png" alt="pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;Manuj Agrawal&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #3d3d3d; "&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/PetrS"&gt;PetrS&lt;/A&gt;‌ &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/alexandrunan"&gt;alexandrunan&lt;/A&gt;‌&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2020 08:40:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029839#M6457</guid>
      <dc:creator>manujagrawal</dc:creator>
      <dc:date>2020-05-30T08:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: issue:s32k144 CAN0 Rx With Fifo DMA</title>
      <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029840#M6458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I need to know some details about this issue, what version of SDK release did you use ? Based on code&amp;nbsp;snippets from pictures it looks like an previous code version from RTM 303.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second we don't support driver modifications by customers only for special quotes and requested features.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/cuongtranmanh"&gt;cuongtranmanh&lt;/A&gt;‌, can you check if in last release is an issue mentioned by&amp;nbsp;&lt;SPAN&gt;Manuj.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;BR /&gt;Alexandru Nan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2020 06:54:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029840#M6458</guid>
      <dc:creator>alexandrunan</dc:creator>
      <dc:date>2020-06-02T06:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: issue:s32k144 CAN0 Rx With Fifo DMA</title>
      <link>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029841#M6459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/alexandrunan"&gt;alexandrunan&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I have been using SDK verion RTM 3.0.0 with came with update package 11 of S32DS-2018.R1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Please do let me know an appropriate fix for avoiding the use of while loop with RxFIFO DMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Also, is there a newer version of SDK available, if so, how do I obtain it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manuj Agrawal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2020 10:26:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/issue-s32k144-CAN0-Rx-With-Fifo-DMA/m-p/1029841#M6459</guid>
      <dc:creator>manujagrawal</dc:creator>
      <dc:date>2020-06-03T10:26:52Z</dc:date>
    </item>
  </channel>
</rss>

