<?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>S12 / MagniV Microcontrollers中的主题 Re: CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696866#M14505</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Ladislav,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Why the RTR in CANIDAR1, 3, 5 &amp;amp; 7 are different ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/26778i27EDA6DB2FDF44AA/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Aug 2017 03:36:17 GMT</pubDate>
    <dc:creator>aaronlee</dc:creator>
    <dc:date>2017-08-19T03:36:17Z</dc:date>
    <item>
      <title>CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696862#M14501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on an automotive &amp;nbsp;prototype project where CAN messages are read over 16 bit MC9S12XEP100CVL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CAN message format is standard 11bit idenfier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am interested in receiving CAN messages in the range of 0x300 to 0x600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know how acceptance filters can be applied to filter the above range.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2017 11:22:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696862#M14501</guid>
      <dc:creator>sushantbanavali</dc:creator>
      <dc:date>2017-08-11T11:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696863#M14502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;because of given range you should use 4z16bit filter setup as follows.&lt;/P&gt;&lt;P&gt;I hope I have not made a mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A) The setup accepts ID within range 0x300-0x6FF for both data and remote frames and standard identifiers only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CANIDAC = 0b00010000;&amp;nbsp;&amp;nbsp; // select 4x16bit filters&lt;/P&gt;&lt;P&gt;// filter0 setup - range 0x300-0x3FF, both data and remote frames are accepted&lt;/P&gt;&lt;P&gt;CANIDAR0 = 0B01100000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR1 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR0 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR1 = 0B11110111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... ignore data/remote, match standard only frame&lt;/P&gt;&lt;P&gt;// filter1 setup - range 0x400-0x4FF, both data and remote frames are accepted&lt;/P&gt;&lt;P&gt;CANIDAR2 = 0B10000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR3 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR2 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR3 = 0B11110111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... ignore data/remote, match standard only frame&lt;/P&gt;&lt;P&gt;// filter2 setup - range 0x500-0x5FF, both data and remote frames are accepted&lt;/P&gt;&lt;P&gt;CANIDAR4 = 0B10100000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR5 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR4 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR5 = 0B11110111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... ignore data/remote, match standard only frame&lt;/P&gt;&lt;P&gt;// filter3 setup - range 0x600-0x6FF, both data and remote frames are accepted&lt;/P&gt;&lt;P&gt;CANIDAR6 = 0B11000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR7 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR6 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR7 = 0B11110111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... ignore data/remote, match standard only frame&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B) The setup accepts ID within range 0x300-0x6FF for data frames only and standard identifiers only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CANIDAC = 0b00010000;&amp;nbsp;&amp;nbsp; // select 4x16bit filters&lt;/P&gt;&lt;P&gt;// filter0 setup - range 0x300-0x3FF, data frames are only accepted&lt;/P&gt;&lt;P&gt;CANIDAR0 = 0B01100000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR1 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR0 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR1 = 0B11100111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... match data only, match standard only frame&lt;/P&gt;&lt;P&gt;// filter1 setup - range 0x400-0x4FF, data frames are only accepted&lt;/P&gt;&lt;P&gt;CANIDAR2 = 0B10000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR3 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR2 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR3 = 0B11100111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... match data only, match standard only frame&lt;/P&gt;&lt;P&gt;// filter2 setup - range 0x500-0x5FF, data frames are only accepted&lt;/P&gt;&lt;P&gt;CANIDAR4 = 0B10100000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR5 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR4 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR5 = 0B11100111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... match data only, match standard only frame&lt;/P&gt;&lt;P&gt;// filter3 setup - range 0x600-0x6FF, data frames are only accepted&lt;/P&gt;&lt;P&gt;CANIDAR6 = 0B11000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR7 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR6 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR7 = 0B11100111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... match data only, match standard only frame&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In detail you can see it here,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/21873i81A45ACB3E372234/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ladislav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2017 11:18:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696863#M14502</guid>
      <dc:creator>lama</dc:creator>
      <dc:date>2017-08-14T11:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696864#M14503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to add....&lt;/P&gt;&lt;P&gt;Having read the question I have found you wanted to filter ID up to 0x600. I suppose it is not 0x600 but 0x5FF. Do not hesitate to response if following is not clear.&lt;BR /&gt;If it is 0x5FF then set the filter 3 (CANIDAR67,CANIDMR67) in the same way as any of the previous filters. It means, for example, CANIDAR67 will be set as CANIDAR45 and CANIDMR67 will be set as CANIDMR45. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if you want exactly interval from 0x300 to ox600 the filter 0,1,2 are OK but the last filter, filter 3, should be set for exact value 0x600 which means:&lt;/P&gt;&lt;P&gt;A) &lt;STRONG&gt;both data and remote frames and standard identifiers only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;// filter3 setup - the exact value 0x600 filter, both data and remote frames are accepted&lt;/P&gt;&lt;P&gt;CANIDAR6 = 0B11000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR7 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR6 = 0B00011111; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR7 = 0B00010111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... ignore data/remote, match standard only frame&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B) The setup accepts ID within range 0x300-0x600 for data frames only and standard identifiers only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;// filter3 setup - the exact value 0x600 filter, data frames are only accepted&lt;/P&gt;&lt;P&gt;CANIDAR6 = 0B11000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDAR7 = 0B00000000; // ID2,1,0,RTR,IDE,x,x,x&amp;nbsp; (1/0=ignore/match)&lt;/P&gt;&lt;P&gt;CANIDMR6 = 0B00000000; // ID10,9,8,7,6,5,4,3&lt;/P&gt;&lt;P&gt;CANIDMR7 = 0B00000111; // ID2,1,0,RTR,IDE,x,x,x (1/0=ignore/match).... match data only, match standard only frame&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;Is it clear?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;Best regards,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;Ladislav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Aug 2017 04:41:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696864#M14503</guid>
      <dc:creator>lama</dc:creator>
      <dc:date>2017-08-15T04:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696865#M14504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ladislav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information.I have successfully applied the above filters to allow messages from 0x300 to 0x600.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 07:25:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696865#M14504</guid>
      <dc:creator>sushantbanavali</dc:creator>
      <dc:date>2017-08-17T07:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: CAN Acceptance Filters usage for MC9S12XEP100CVL</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696866#M14505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Ladislav,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Why the RTR in CANIDAR1, 3, 5 &amp;amp; 7 are different ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/26778i27EDA6DB2FDF44AA/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Aug 2017 03:36:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/CAN-Acceptance-Filters-usage-for-MC9S12XEP100CVL/m-p/696866#M14505</guid>
      <dc:creator>aaronlee</dc:creator>
      <dc:date>2017-08-19T03:36:17Z</dc:date>
    </item>
  </channel>
</rss>

