<?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: LCP54628 MCAN Configuration in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665934#M52920</link>
    <description>&lt;P&gt;&lt;EM&gt;&amp;gt; More one question, I saw there is a software Can Open File Player. It is necessary to read CAN package? Or there is another software necesary to read CAN package?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CANopen is a standard based on CAN, restricting epsecially the ID usage.&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/CANopen" target="_blank"&gt;https://en.wikipedia.org/wiki/CANopen&lt;/A&gt;&lt;BR /&gt;Unless you don't have a CANopen environment (and don't plan on using one), I would not start with those examples. They add another layer of complexity.&lt;BR /&gt;I used to work a lot with such CANopen devices&amp;nbsp; in my company.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In regards to mentioned CAN breakout boards, me and Alice_Yang were speaking about different things.&lt;BR /&gt;Those breakout boards mentioned by me are for the MCU side, and would extend any eval board.&lt;BR /&gt;An USB CAN adapter is useful/required for the host/PC side.&lt;BR /&gt;My company uses a few Vector pods, but mostly the cheaper PCAN devices :&amp;nbsp;&lt;A href="https://www.peak-system.com/PCAN-USB.199.0.html?&amp;amp;L=1" target="_blank"&gt;https://www.peak-system.com/PCAN-USB.199.0.html?&amp;amp;L=1&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2023 07:24:51 GMT</pubDate>
    <dc:creator>frank_m</dc:creator>
    <dc:date>2023-06-08T07:24:51Z</dc:date>
    <item>
      <title>LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661132#M52812</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;Please, someone could help me with CAN protocol configuration?&lt;/P&gt;&lt;P&gt;In this project I am using OM13098 development board with LPC54628 microcontroller and I'm working with MCUXpressoIDE v11.6.0 and with version 2.12 from SDK.&lt;/P&gt;&lt;P&gt;I saw and compiled the examples from SDK, but I think there is something weird with that examples.&lt;/P&gt;&lt;P&gt;I'm trying to do a loopback teste with the CAN Protocol, but following example code (lpcxpresso54628_mcan_loopback) is possible do this loopback without phisical connection beteween CAN0_RD (RX) and CAN0_TD (TX). In this way, isn't useful for one real application.&amp;nbsp;It's right?&lt;BR /&gt;&lt;BR /&gt;I expect to develop a example code with CAN0 working by interruptions and just works when I'll physically connect RX with TX like in serial communication.&lt;BR /&gt;In future, I intend to develop a master CAN with CAN1 and a slave CAN with CAN0.&lt;/P&gt;&lt;P&gt;Below there is the example code who I'm using and trying to unveil this mystery. If someone could help me, please could you contact me?&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 18:59:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661132#M52812</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-05-31T18:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661565#M52821</link>
      <description>&lt;P&gt;There is a "&lt;FONT face="courier new,courier"&gt;mcan_interrupt_transfer&lt;/FONT&gt;" example in &lt;FONT face="courier new,courier"&gt;driver_examples&lt;/FONT&gt; in the SDK.&lt;BR /&gt;I am referring to the LPCXpresso54628 SDK here which I use occasionally.&lt;BR /&gt;Though I must admit I never tried any CAN example with this board.&lt;/P&gt;&lt;P&gt;To use CAN (not the internal loopback mode), you should have proper transceivers attached, albeit for just two nodes, a direct (TTL level) connection might work.&lt;/P&gt;&lt;P&gt;Or, you can try to modify your loopback example, and initialize the CAN peripheral in full CAN mode.&lt;BR /&gt;Perhaps taking the code from the interrupt_transfer example as template.&lt;/P&gt;&lt;P&gt;By the way, I had included a CANopen middleware package in my SDK, which provides 4 CANopen examples. Not sure if that would be helpful for you.&lt;BR /&gt;My company's products use mainly CANopen for their ECUs.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 07:11:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661565#M52821</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-01T07:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661878#M52829</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/137574"&gt;@frank_m&lt;/a&gt; !!!&lt;BR /&gt;First I should say thank you for yout reply my question!&lt;BR /&gt;I saw the example mcan_interrupt_transfer in the same SDK like you said, but I think this is useful for 2 boards and works with callbacks functions.&lt;/P&gt;&lt;P&gt;In my case don't have 2 boards here and I need to develop a code with interrupt functions, this is a reason I'm trying to use mcan_loopback example for my model.&lt;BR /&gt;And about the&amp;nbsp;transceivers, I trying to do something before read the "real" CAN Protocol. I'm just trying to send some knowed package and receive the same package, exactly like in serial communication. But the example loopback is weird, like I said before.&lt;/P&gt;&lt;P&gt;I'll follow your first ideia about&amp;nbsp;initialize the CAN peripheral in full CAN mode.&lt;BR /&gt;Could you explain better your ideia? And could you show me who function are you thinking to change?&lt;BR /&gt;&lt;BR /&gt;About your&amp;nbsp;CANopen middleware package, if it's possible you share with me, I really be grateful for you send me. Because maybe it could be useful for my project.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 12:08:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661878#M52829</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-01T12:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661925#M52831</link>
      <description>&lt;P&gt;If I remember correctly, the loopback mode is internal, i.e. the connection between Tx and Rx is on silicon.&lt;BR /&gt;Thus the signal never "leaves" the MCU.&lt;BR /&gt;It is a setting in the MCAN config register, you might need to consult the MCU user manual / datasheet.&lt;/P&gt;&lt;P&gt;An option interesting for you would be to turn off this loopback mode, and instead connect CAN Tx and Rx externally, i.e. on the board. This should yield the same result.&lt;/P&gt;&lt;P&gt;The interrupt-based example would be one example of how to configure the MCAN peripheral for normal operation.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; And about the&amp;nbsp;transceivers, I trying to do something before read the "real" CAN Protocol.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Transceivers do only affect signal levels. As you might know, CAN uses a differential signal with different voltage levels.&lt;BR /&gt;But you can connect two CAN devices directly (without tranceivers), provided they have the same digital levels (supply voltage). Ground loops might become problematic, though.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 13:57:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661925#M52831</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-01T13:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661994#M52832</link>
      <description>&lt;P&gt;Exactly, this example use the silicon internal loopback.&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;gt;An option interesting for you would be to turn off this loopback mode, and instead connect CAN Tx and Rx externally, i.e. on the board. This should yield the same result.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This is exactly what I want to do.&lt;BR /&gt;But when I do this, I don't receive the same buffer as I send.&lt;BR /&gt;I changed somethings in code and remove this internal loopback. So now, this code work if external loopback, but my received frame data isn't the same as I send. Below there is a photo from my terminal. Maybe it can be better explained.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 15:43:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1661994#M52832</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-01T15:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1662327#M52837</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/218138"&gt;@FFOXZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About external loopback mode, please refer to UM10912 -&amp;gt; 5.14.1.7.1 External loop back mode, after configure based on loopback demo,&lt;/P&gt;
&lt;P&gt;if still can't work, you can use peripheral tool to configure as below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1685676303437.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/225981iB94DE4DCFEE7EBA5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1685676303437.png" alt="Alice_Yang_0-1685676303437.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 03:25:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1662327#M52837</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-06-02T03:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1662353#M52839</link>
      <description>&lt;P&gt;I would definitely consult the manual, as Alice_Yang suggested.&lt;/P&gt;&lt;P&gt;To be honest, I don't have much experience with the LPC MCAN peripheral, though I dealt a lot CAN on other architectures.&lt;/P&gt;&lt;P&gt;I am not sure if the internal loopback mode requires the GPIO pins (for Tx/Rx) to be configured as alternative (CAN) functionality. You could compare this with the interrupt example.&lt;BR /&gt;The pin initialisation code of the project is usually found in &lt;FONT face="courier new,courier"&gt;pinmux.c / pinmux.h&lt;/FONT&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 05:07:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1662353#M52839</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-02T05:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663491#M52858</link>
      <description>&lt;P&gt;Hello Frank!&lt;BR /&gt;Thank you for your advice again.&lt;BR /&gt;I'm reading better all 35.14 chapters like Alice recommended.&lt;/P&gt;&lt;P&gt;About the pins, I confirmed it is being initialized with alternative (CAN) function in all example.&lt;BR /&gt;I think the point here is "remove" this internal connection between&lt;BR /&gt;tx and rx like explained in Figure 139 (section 35.14.1.7.2).&lt;BR /&gt;I'll publish this Figure 139 here.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 12:41:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663491#M52858</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-05T12:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663500#M52859</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/27788"&gt;@Alice_Yang&lt;/a&gt;&amp;nbsp;!!!&lt;BR /&gt;&lt;BR /&gt;I really need to say thank you for your advice. I read the documentation and now I could understand how this examples works.&lt;BR /&gt;But my idea is using the CAN RX with the CAN TX outside of microcontroller, work like a real external loop back and don't have a "jumper" inside of microcontroller like this tests modes.&lt;BR /&gt;Please, could you know a way to do this? Do you know a way to disable this "jumper" and I could read the real data what I transfer?&lt;BR /&gt;For example: I send eight equals data (0x55) and read the same data on CAN RX.&lt;BR /&gt;Below is the same photo as I send to&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/137574"&gt;@frank_m&lt;/a&gt;&amp;nbsp;to be more explained&amp;nbsp;what I want to do.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 12:55:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663500#M52859</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-05T12:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663526#M52862</link>
      <description>&lt;P&gt;I think the picture labelled "external loop back mode" is incorrect. The drawing contradicts the very term.&lt;/P&gt;&lt;P&gt;Perhaps a Copy&amp;amp;Paste error which requires quite a bit of work on the proofreader's side.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 13:48:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663526#M52862</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-05T13:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663531#M52863</link>
      <description>&lt;P&gt;I don't think so, because in this case the output is readable with oscilloscope in CAN0_TX and just when I connect the tx with rx.&lt;BR /&gt;But in serial terminal isn't read the same package.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 13:58:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1663531#M52863</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-05T13:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1664996#M52886</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/218138"&gt;@FFOXZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;term&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"loopback" here is a special&amp;nbsp;term for CAN specification, which mean's do not need external connection.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want&amp;nbsp; a actual external CAN test,&amp;nbsp;which&amp;nbsp;&lt;STRONG&gt;MUST&lt;/STRONG&gt;&amp;nbsp;need CAN transceiver and another CAN node for test. you can use some "USB-CAN" adapter&amp;nbsp; to try this.It is&amp;nbsp;not possible to connect directly CAN_TX and CAN RX for on-board CAN test.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 08:27:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1664996#M52886</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-06-07T08:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665061#M52889</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/27788"&gt;@Alice_Yang&lt;/a&gt;&amp;nbsp;!!!&lt;/P&gt;&lt;P&gt;Thank you again for answer me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really?? Yesterday I was trying to use the example mcan_interrupt_transfer to try again another test join CAN_RX and CAN_TX directly, like I said before. My oscilloscope show me all transmitted package but in debug mode appear this error&amp;nbsp;0x1849 --&amp;gt; kStatus_MCAN_UnHandled.&lt;/P&gt;&lt;P&gt;Excuse me but I'll insist a little bit... But it CAN protocol is similar to Serial communication, isn't?&lt;/P&gt;&lt;P&gt;More one doubt... So, in same board, I could do this external test with both CAN's? For example, I can connect the CAN_0 with the CAN_1, using transceivers.&lt;/P&gt;&lt;P&gt;Could I use this mcan_interrupt_transfer example for this test?&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;Cvsta.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 09:36:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665061#M52889</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-07T09:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665090#M52890</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; Excuse me but I'll insist a little bit... But it CAN protocol is similar to Serial communication, isn't?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You are right, at this level, CAN is just a digital signal like RS232 or SPI.&lt;BR /&gt;You can connect two nodes directly, provided they have the same digital levels and specifications (and the cable is not too long).&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;By the way, I think there are several relatively cheap CAN breakout boards available, like in the Arduino/maker scene. Those would be a great start to get a prototype working, because very few evaluation boards come with CAN hardware.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 10:12:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665090#M52890</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-07T10:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665717#M52900</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/218138"&gt;@FFOXZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1） "&lt;SPAN&gt;More one doubt... So, in same board, I could do this external test with both CAN's? For example, I can connect the CAN_0 with the CAN_1, using transceivers.&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;-&amp;gt;&amp;gt; Yes.&lt;/P&gt;
&lt;P&gt;2）There is a description about CAN transceiver:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_2-1686190623304.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226739iE2720CF11F3C3D3A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_2-1686190623304.png" alt="Alice_Yang_2-1686190623304.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 02:18:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665717#M52900</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-06-08T02:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665761#M52905</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/27788"&gt;@Alice_Yang&lt;/a&gt;&amp;nbsp;!!!&lt;/P&gt;&lt;P&gt;Thank you again for more this documentation.&lt;/P&gt;&lt;P&gt;Now I'll try develop a new test using CAN_0 with CAN_1 and publish my code here as soon as possible.&lt;/P&gt;&lt;P&gt;More one question, I saw there is a software Can Open File Player. It is necessary to read CAN package? Or there is another software necesary to read CAN package?&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;P&gt;Cvsta.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 03:16:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665761#M52905</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-08T03:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665896#M52918</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/218138"&gt;@FFOXZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1) "More one question, I saw there is a software Can Open File Player. It is necessary to read CAN package? Or there is another software necesary to read CAN package?"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;-&amp;gt;&amp;gt; Do you&amp;nbsp; mean a PC software?&amp;nbsp; connect with "USB-CAN" adapter?&lt;/P&gt;
&lt;P&gt;For start, if you only have one board, as Frank said, you can consider&lt;SPAN&gt;&amp;nbsp;"relatively cheap CAN breakout boards available, like in the Arduino/maker scene. Those would be a great start to get a prototype working, because very few evaluation boards come with CAN hardware.".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Or use "USB-CAN" adapter.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2)If you use "mcan_interrupt_transfer" demo, there is hardware requirements and boards setting in readme.txt:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1686206440971.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226769iDD22DFCB69C0C446/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1686206440971.png" alt="Alice_Yang_0-1686206440971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 06:40:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665896#M52918</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2023-06-08T06:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665934#M52920</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; More one question, I saw there is a software Can Open File Player. It is necessary to read CAN package? Or there is another software necesary to read CAN package?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CANopen is a standard based on CAN, restricting epsecially the ID usage.&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/CANopen" target="_blank"&gt;https://en.wikipedia.org/wiki/CANopen&lt;/A&gt;&lt;BR /&gt;Unless you don't have a CANopen environment (and don't plan on using one), I would not start with those examples. They add another layer of complexity.&lt;BR /&gt;I used to work a lot with such CANopen devices&amp;nbsp; in my company.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In regards to mentioned CAN breakout boards, me and Alice_Yang were speaking about different things.&lt;BR /&gt;Those breakout boards mentioned by me are for the MCU side, and would extend any eval board.&lt;BR /&gt;An USB CAN adapter is useful/required for the host/PC side.&lt;BR /&gt;My company uses a few Vector pods, but mostly the cheaper PCAN devices :&amp;nbsp;&lt;A href="https://www.peak-system.com/PCAN-USB.199.0.html?&amp;amp;L=1" target="_blank"&gt;https://www.peak-system.com/PCAN-USB.199.0.html?&amp;amp;L=1&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 07:24:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1665934#M52920</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-06-08T07:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1666994#M52954</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/27788"&gt;@Alice_Yang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This description about CAN Transceiver as you send is from a public document?&lt;/P&gt;&lt;P&gt;Would it be possible for you to share this document?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;CVSta&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 13:33:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1666994#M52954</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-09T13:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: LCP54628 MCAN Configuration</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1667000#M52955</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/137574"&gt;@frank_m&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Thank you to send me all this links and information about USB CAN.&lt;/P&gt;&lt;P&gt;But thinking better I won't need to use these softwares or CAN breakout boards.&lt;/P&gt;&lt;P&gt;Because, my ideia is connect one board CAN Master with another board CAN Slave.&amp;nbsp;So I think just testing the connection and sending a package and receiving the same package will be successfully.&lt;/P&gt;&lt;P&gt;Tks.&lt;/P&gt;&lt;P&gt;CVSta&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 13:42:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LCP54628-MCAN-Configuration/m-p/1667000#M52955</guid>
      <dc:creator>FFOXZ</dc:creator>
      <dc:date>2023-06-09T13:42:11Z</dc:date>
    </item>
  </channel>
</rss>

