<?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>Other NXP ProductsのトピックRe: MPC5554 CAN Baudrate init</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208279#M2261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found my problem, the two definitions of the CAN Pins were wrong. The value has to be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SIU.PCR[83].R&amp;nbsp; = 0x060F; // FlexCAN_A_CNTX -&amp;gt; primary function&lt;BR /&gt;&amp;nbsp; SIU.PCR[84].R&amp;nbsp; = 0x050F; // FlexCAN_A_CNRX -&amp;gt; primary function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The value for the Config Register:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CAN_A.CR.R = 0x0F122000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this coniguration my CAN Interface works with 1MBaud!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//*******************************************&lt;/P&gt;//&amp;nbsp; (fSYS = 128MHz, fOSC = 8MHz)&lt;P&gt;#define CAN_BAUD_1M&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x0F122000&lt;BR /&gt;#define CAN_BAUD_500k&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x00360000&lt;BR /&gt;#define CAN_BAUD_250k&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x01360000&amp;nbsp;&lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by A.Nagy on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-09-02&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;10:56 AM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2009 16:55:41 GMT</pubDate>
    <dc:creator>A_Nagy</dc:creator>
    <dc:date>2009-09-02T16:55:41Z</dc:date>
    <item>
      <title>MPC5554 CAN Baudrate init</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208278#M2260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using an MPC5554 on a development board from phytec. On the development board is a crystal with 8MHz, fSYS is set to 128MHz.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I init my CAN interface with 166kBaud. The clock source is the crystal, the Bus is working. My register value is : 0x02DB0006 (CANA.CR).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This means:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PRESDIV = 2&lt;/P&gt;&lt;P&gt;RJW=3&lt;/P&gt;&lt;P&gt;PSEG2=3&lt;/P&gt;&lt;P&gt;PSEG1=3&lt;/P&gt;&lt;P&gt;CLK_src=0&lt;/P&gt;&lt;P&gt;PROPSEG=6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I init my CAN interface with 1MBaud. The clock source couldn't be longer the crystal.&lt;/P&gt;&lt;P&gt;My register value is : 0x07DB2006 (CANA.CR).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This means:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PRESDIV = 7&lt;/P&gt;&lt;P&gt;RJW=3&lt;/P&gt;&lt;P&gt;PSEG2=3&lt;/P&gt;&lt;P&gt;PSEG1=3&lt;/P&gt;&lt;P&gt;CLK_src=1&lt;/P&gt;PROPSEG=6&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Bus isn't working!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anybody see a mistake?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 17:02:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208278#M2260</guid>
      <dc:creator>A_Nagy</dc:creator>
      <dc:date>2009-08-19T17:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: MPC5554 CAN Baudrate init</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208279#M2261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found my problem, the two definitions of the CAN Pins were wrong. The value has to be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SIU.PCR[83].R&amp;nbsp; = 0x060F; // FlexCAN_A_CNTX -&amp;gt; primary function&lt;BR /&gt;&amp;nbsp; SIU.PCR[84].R&amp;nbsp; = 0x050F; // FlexCAN_A_CNRX -&amp;gt; primary function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The value for the Config Register:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CAN_A.CR.R = 0x0F122000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this coniguration my CAN Interface works with 1MBaud!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//*******************************************&lt;/P&gt;//&amp;nbsp; (fSYS = 128MHz, fOSC = 8MHz)&lt;P&gt;#define CAN_BAUD_1M&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x0F122000&lt;BR /&gt;#define CAN_BAUD_500k&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x00360000&lt;BR /&gt;#define CAN_BAUD_250k&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x01360000&amp;nbsp;&lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by A.Nagy on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-09-02&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;10:56 AM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 16:55:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208279#M2261</guid>
      <dc:creator>A_Nagy</dc:creator>
      <dc:date>2009-09-02T16:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: MPC5554 CAN Baudrate init</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208280#M2262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;A Nagy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you see this mail I am interested in your project spezial this MPC 5554 CAN connection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you mail me ? I now it is an year agoo maybe you read it .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tks12xvodafone.nl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards T.Kienhuis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Oct 2010 02:29:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/MPC5554-CAN-Baudrate-init/m-p/208280#M2262</guid>
      <dc:creator>T_Ks</dc:creator>
      <dc:date>2010-10-24T02:29:05Z</dc:date>
    </item>
  </channel>
</rss>

