<?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 S32K148 CAN in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010369#M6107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi，dear&lt;/P&gt;&lt;P&gt;i new build can_pal_s32k148 example (sdk3.0),i&amp;nbsp;replace (can_pal1.c) CAN_NORMAL_MODE to&amp;nbsp;CAN_LOOPBACK_MODE,i press button(sw3 sw4), led0 or led1 not toggle;&lt;/P&gt;&lt;P&gt;use hardware:s32k148evb-q176&lt;/P&gt;&lt;P&gt;please help me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Nov 2019 03:24:18 GMT</pubDate>
    <dc:creator>gravity_one</dc:creator>
    <dc:date>2019-11-06T03:24:18Z</dc:date>
    <item>
      <title>S32K148 CAN</title>
      <link>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010369#M6107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi，dear&lt;/P&gt;&lt;P&gt;i new build can_pal_s32k148 example (sdk3.0),i&amp;nbsp;replace (can_pal1.c) CAN_NORMAL_MODE to&amp;nbsp;CAN_LOOPBACK_MODE,i press button(sw3 sw4), led0 or led1 not toggle;&lt;/P&gt;&lt;P&gt;use hardware:s32k148evb-q176&lt;/P&gt;&lt;P&gt;please help me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2019 03:24:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010369#M6107</guid>
      <dc:creator>gravity_one</dc:creator>
      <dc:date>2019-11-06T03:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: S32K148 CAN</title>
      <link>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010370#M6108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this example configures 1 TX MB and 1 RX MB with different IDs, exact match is expected. If you set loopback mode, message is received, but does not match with configured&amp;nbsp;ID, so it is not stored into RX MB and no LED can be toggled.&lt;/P&gt;&lt;P&gt;Try to simple configure same ID for both MBs, for example use&lt;/P&gt;&lt;P&gt;#define RX_MSG_ID&amp;nbsp; &amp;nbsp;(1UL)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 07:36:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010370#M6108</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2019-11-07T07:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: S32K148 CAN</title>
      <link>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010371#M6109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi，&lt;/P&gt;&lt;P&gt;how to add CAN ID&amp;nbsp;&lt;SPAN&gt;filter？&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;uint32_t id_filter_table[]={0x001,0x002,0x003,0x004,0x022};&lt;BR /&gt;void CAN_id_filter(uint8_t instance)&lt;BR /&gt;{&lt;BR /&gt; for(int i=0;i&amp;lt;sizeof(id_filter_table);i++)&lt;BR /&gt; FLEXCAN_DRV_SetRxMbGlobalMask(instance,FLEXCAN_MSG_ID_STD,id_filter_table[i]);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;is right？&lt;/P&gt;&lt;P&gt;I test，it receive all can ID，why？&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2019 07:48:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010371#M6109</guid>
      <dc:creator>gravity_one</dc:creator>
      <dc:date>2019-11-20T07:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: S32K148 CAN</title>
      <link>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010372#M6110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can refer to below example&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-343091"&gt;https://community.nxp.com/docs/DOC-343091&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it shows usage of RXFIFO and ID table in the SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2019 11:59:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K148-CAN/m-p/1010372#M6110</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2019-11-20T11:59:51Z</dc:date>
    </item>
  </channel>
</rss>

