<?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: Implemmenting  CANOpen starting from LPCOpen in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Implemmenting-CANOpen-starting-from-LPCOpen/m-p/593475#M22506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abderrezak,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; About the question how the code can accept 0x03, 0x05, 0x07, 0x09 CAN ID, you need to know the CAN acceptance filter and the ID look-up table RAM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This content already described in the user manual in details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please refer to LPC1788 user manual:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pdf&amp;amp;WT_ASSET=Documentation&amp;amp;fileExt=.pdf" title="http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pdf&amp;amp;WT_ASSET=Documentation&amp;amp;fileExt=.pdf"&gt;http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pd…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From page 585, chapter 20.10 Global acceptance filter to&amp;nbsp; page 613.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You will get how the receive filter works, and the function of Full CAN Section, Individual Standard ID Section and Standard ID Range Section also in these content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you still have question, please let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jingjing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Thu, 25 Aug 2016 05:41:13 GMT</pubDate>
    <dc:creator>kerryzhou</dc:creator>
    <dc:date>2016-08-25T05:41:13Z</dc:date>
    <item>
      <title>Implemmenting  CANOpen starting from LPCOpen</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Implemmenting-CANOpen-starting-from-LPCOpen/m-p/593474#M22505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Dear All,&lt;/P&gt;&lt;P&gt;Because of many people, such me, searching for an open source implementation of the CANOpen layer on NXP µC, I have decide to start this project. I can start a discussion and a repository if some people are interested (Using LPCXpresso and LPCOpen)&lt;/P&gt;&lt;P&gt;I have found an open source layer of the CANOpen (CANOpenNode) below&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/CANopenNode/CANopenNode" title="https://github.com/CANopenNode/CANopenNode"&gt;GitHub - CANopenNode/CANopenNode: CANopen stack base.&lt;/A&gt;​ &lt;/P&gt;&lt;P&gt;Now, I'm trying to use the LPCOpen periph_can example to merge it with this work to implement all work on LPC1788.&lt;/P&gt;&lt;P&gt;Because I have never use CAN before I have some difficulties to understand the example, specially the setup of the Acceptance Filter LookUpTable. &lt;/P&gt;&lt;P&gt;For example I can't understand the following code &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CAN_STD_ID_ENTRY_T FullCANSection[] = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {CAN_CTRL_NO, 0, 0x03},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {CAN_CTRL_NO, 0, 0x05},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {CAN_CTRL_NO, 0, 0x07},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {CAN_CTRL_NO, 0, 0x09},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;&lt;P&gt;how it accept 0x03, 0x04, 0x07, 0x09 as said in the readme, and confirmed by CAN analyzer.&lt;/P&gt;&lt;P&gt;What is the difference between Full CAN Section, Individual Standard ID Section and Standard ID Range Section&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 14:27:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Implemmenting-CANOpen-starting-from-LPCOpen/m-p/593474#M22505</guid>
      <dc:creator>abderrezak</dc:creator>
      <dc:date>2016-07-20T14:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Implemmenting  CANOpen starting from LPCOpen</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Implemmenting-CANOpen-starting-from-LPCOpen/m-p/593475#M22506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abderrezak,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; About the question how the code can accept 0x03, 0x05, 0x07, 0x09 CAN ID, you need to know the CAN acceptance filter and the ID look-up table RAM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This content already described in the user manual in details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please refer to LPC1788 user manual:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pdf&amp;amp;WT_ASSET=Documentation&amp;amp;fileExt=.pdf" title="http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pdf&amp;amp;WT_ASSET=Documentation&amp;amp;fileExt=.pdf"&gt;http://www.nxp.com/documents/user_manual/UM10470.pdf?fasp=1&amp;amp;WT_TYPE=Users%20Guides&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=pd…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From page 585, chapter 20.10 Global acceptance filter to&amp;nbsp; page 613.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You will get how the receive filter works, and the function of Full CAN Section, Individual Standard ID Section and Standard ID Range Section also in these content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you still have question, please let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jingjing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Thu, 25 Aug 2016 05:41:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Implemmenting-CANOpen-starting-from-LPCOpen/m-p/593475#M22506</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2016-08-25T05:41:13Z</dc:date>
    </item>
  </channel>
</rss>

