<?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>LPC MicrocontrollersのトピックRe: 11c24 CAN speed</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542137#M12426</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Thu Jan 16 15:00:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: felorek&lt;/STRONG&gt;&lt;BR /&gt;SJW is 4 actually, right?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This value is SJW value of CANBT register, which is of course interpreted as SJW+1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UM:&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Hardware interprets the value programmed into these bits as the bit value + 1.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: felorek&lt;/STRONG&gt;&lt;BR /&gt;And what for is it used?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SJW = '(Re)synchronization jump width' should be explained in every CAN description.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://http://www.bosch-semiconductors.de/media/pdf_1/canliteratur/cia99paper.pdf"&gt;The Configuration of the CAN Bit Timing&lt;/A&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;The (Re-)Synchronization Jump Width (SJW) defines how far a resynchronization may move the Sample Point inside the&lt;BR /&gt;limits defined by the Phase Buffer Segments to compensate for edge phase errors. &lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 19:43:36 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T19:43:36Z</dc:date>
    <item>
      <title>11c24 CAN speed</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542134#M12423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by felorek on Wed Jan 15 10:54:38 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm running an example called "canopen on chip" and its bus baudrate is set to 125kbps, how can I change it to 1Mbits? I'm new to programming microntrolers so if u can explain it in easy way I would be very thankful. My microcontroler: LPCXpresso LPC 11C24 REV B (Designed by Embedded Artists NXP/Code red). I attached a code in case u wouldn't know about what example I'm talking about.&lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-338130"&gt;canopen_onchip.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:43:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542134#M12423</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: 11c24 CAN speed</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542135#M12424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Wed Jan 15 11:33:23 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Your CAN baudrate setup is done here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
/* Initialize CAN Controller */
uint32_t ClkInitTable[2] = {
&amp;nbsp; 0x00000000UL, // CANCLKDIV
&amp;nbsp; 0x00001C57UL&amp;nbsp; // CAN_BTR
};&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sample 1MHz @ 48MHz main clock setup with late sample point:&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
//Initialize CAN Controller 48MHz-1000kbps
uint32_t ClkInitTable[2] = {
 0x00000000UL, //CANCLCLKDIV -&amp;gt; div: 0
 0x00002BC2UL, //CAN_BTR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;gt; BRP: 3, Quanta: 16, Seg1: 12, Seg2: 3, SJW: 3, Sample 81%
};
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Explanation:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://http://www.lpcware.com/content/forum/lpc11cxx-can-baud-rate-calculation" rel="nofollow noopener noreferrer" target="_blank"&gt;ZERO is explaining how to setup CAN baudrate...&lt;/A&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:43:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542135#M12424</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: 11c24 CAN speed</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542136#M12425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by felorek on Wed Jan 15 16:00:50 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;SJW is 4 actually, right? And what for is it used?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:43:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542136#M12425</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: 11c24 CAN speed</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542137#M12426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Thu Jan 16 15:00:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: felorek&lt;/STRONG&gt;&lt;BR /&gt;SJW is 4 actually, right?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This value is SJW value of CANBT register, which is of course interpreted as SJW+1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UM:&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Hardware interprets the value programmed into these bits as the bit value + 1.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: felorek&lt;/STRONG&gt;&lt;BR /&gt;And what for is it used?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SJW = '(Re)synchronization jump width' should be explained in every CAN description.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://http://www.bosch-semiconductors.de/media/pdf_1/canliteratur/cia99paper.pdf"&gt;The Configuration of the CAN Bit Timing&lt;/A&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;The (Re-)Synchronization Jump Width (SJW) defines how far a resynchronization may move the Sample Point inside the&lt;BR /&gt;limits defined by the Phase Buffer Segments to compensate for edge phase errors. &lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:43:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/11c24-CAN-speed/m-p/542137#M12426</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:43:36Z</dc:date>
    </item>
  </channel>
</rss>

