<?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: Issue in the communication between two MCAN modules in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784275#M31498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This kit doesn't contain USB cables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Sol&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jul 2018 16:34:14 GMT</pubDate>
    <dc:creator>soledad</dc:creator>
    <dc:date>2018-07-27T16:34:14Z</dc:date>
    <item>
      <title>Issue in the communication between two MCAN modules</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784272#M31495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using the OM13094 (LPCXpresso54618 CAN-FD kit), which provides two can modules CAN1 and CAN0.&lt;BR /&gt;I also use the provided SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to send a frame from CAN0 to CAN1. The frame is correctly received but CAN1 stores the frame in the wrong memory section (at MSG_RAM_BASE0+RX_FIFO1_OFS). In particular, it stores the frame as if the base address of the Message RAM used for CAN1 was the one used for CAN0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attach here an excerpt of the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define MSG_RAM_BASE0 0x20010000U&amp;nbsp;&amp;nbsp; //Base address of the Message Ram for CAN0&lt;BR /&gt;#define TX_BUFFER_OFS 0x00U&lt;BR /&gt;#define RX_FIFO1_OFS&amp;nbsp; 0x20U&lt;BR /&gt;#define MSG_RAM_BASE1 0x20010050U //Base address of the Message Ram for CAN1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Set Base Addresses&lt;/P&gt;&lt;P&gt;MCAN_SetMsgRAMBase(CAN0, MSG_RAM_BASE0);&lt;BR /&gt;MCAN_SetMsgRAMBase(CAN1, MSG_RAM_BASE1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;/* RX fifo1 config for CAN1*/&lt;BR /&gt;&amp;nbsp;rxFifo1.address = RX_FIFO1_OFS;&lt;BR /&gt;&amp;nbsp;rxFifo1.elementSize = 1U;&lt;BR /&gt;&amp;nbsp;rxFifo1.watermark = 0;&lt;BR /&gt;&amp;nbsp;rxFifo1.opmode = kMCAN_FifoBlocking;&lt;BR /&gt;&amp;nbsp;rxFifo1.datafieldSize = kMCAN_8ByteDatafield;&lt;BR /&gt;&amp;nbsp;MCAN_SetRxFifo0Config(CAN1, &amp;amp;rxFifo1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;/* TX buffer config for CAN0*/&lt;BR /&gt;&amp;nbsp;txBuffer.address = TX_BUFFER_OFS;&lt;BR /&gt;&amp;nbsp;txBuffer.dedicatedSize = 1U;&lt;BR /&gt;&amp;nbsp;txBuffer.fqSize = 0;&lt;BR /&gt;&amp;nbsp;txBuffer.datafieldSize = kMCAN_8ByteDatafield;&lt;BR /&gt;&amp;nbsp;MCAN_SetTxBufferConfig(CAN0, &amp;amp;txBuffer);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The frame received by CAN1 is stored at&amp;nbsp; address 0x20010020U&amp;nbsp; (MSG_RAM_BASE0 + RX_FIFO1_OFS) instead of&amp;nbsp; at&amp;nbsp; address 0x20010070U (MSG_RAM_BASE1 + RX_FIFO1_OFS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone provide any help about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;H1&gt;&lt;/H1&gt;&lt;A href="mailto:?subject=OM13094%20%7C%20LPCXpresso%20Development%20Board%20%7C%20LPC%20Microntrollers%20(MCUs)%7CNXP&amp;amp;body=https://www.nxp.com/support/developer-resources/hardware-development-tools/lpcxpresso-boards/lpcxpresso54618-can-fd-kit:OM13094" title="Share via Email"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;DIV class=""&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 12:34:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784272#M31495</guid>
      <dc:creator>fabio_malatesta</dc:creator>
      <dc:date>2018-07-25T12:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the communication between two MCAN modules</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784273#M31496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i ask a question about this kit?&lt;/P&gt;&lt;P&gt;does this kit contain micro usb cable lines?&lt;/P&gt;&lt;P&gt;should i buy usb cable lines?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 02:47:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784273#M31496</guid>
      <dc:creator>kevin_huang</dc:creator>
      <dc:date>2018-07-26T02:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the communication between two MCAN modules</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784274#M31497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fabio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the below thread: &lt;A href="https://community.nxp.com/thread/464785"&gt;Message ram location in CAN controller(s) on LPC54608&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Sol&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 16:10:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784274#M31497</guid>
      <dc:creator>soledad</dc:creator>
      <dc:date>2018-07-27T16:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the communication between two MCAN modules</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784275#M31498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This kit doesn't contain USB cables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Sol&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 16:34:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Issue-in-the-communication-between-two-MCAN-modules/m-p/784275#M31498</guid>
      <dc:creator>soledad</dc:creator>
      <dc:date>2018-07-27T16:34:14Z</dc:date>
    </item>
  </channel>
</rss>

