<?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: KV11 CAN Disable Receiving Transmitter Packets (echo) in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984263#M55527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer. I set the SRXDIS bit to 1 as you suggested. Below is the snippet for reference who finds this post. I needed to do it in&amp;nbsp;FLEXCAN_Init() function in the fsl_flexcan.c file. Otherwise, it didn't work outside of this function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mcrTemp |= (1 &amp;lt;&amp;lt; 17); //disable self reception (CANx_MCR SRXDIS=1)&lt;BR /&gt; /* Save MCR Configuation. */&lt;BR /&gt; base-&amp;gt;MCR = mcrTemp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Dec 2019 08:48:27 GMT</pubDate>
    <dc:creator>abdullah_cinar</dc:creator>
    <dc:date>2019-12-28T08:48:27Z</dc:date>
    <item>
      <title>KV11 CAN Disable Receiving Transmitter Packets (echo)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984261#M55525</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;I am trying to send and receive CAN packets between my MKV11Z64 and a custom CAN device. I disabled ID filtering, so I am receiving every packet coming from the CAN line. But the problem is I also receive the packets that I transmitted. I&amp;nbsp;just want to receive the packets sent from the other device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached the file that contains my CAN configurations. The echo mode is already disabled by the way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2019 08:48:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984261#M55525</guid>
      <dc:creator>abdullah_cinar</dc:creator>
      <dc:date>2019-12-16T08:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: KV11 CAN Disable Receiving Transmitter Packets (echo)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984262#M55526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;Abdullah,&lt;/P&gt;&lt;P&gt;Please check the value of&amp;nbsp;CANx_MCR[SRXDIS]&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="CANx_MCR[SRXDIS].png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/96916i56745AC971F00A63/image-size/large?v=v2&amp;amp;px=999" role="button" title="CANx_MCR[SRXDIS].png" alt="CANx_MCR[SRXDIS].png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Best Regards,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Robin&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&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>Tue, 17 Dec 2019 06:05:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984262#M55526</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2019-12-17T06:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: KV11 CAN Disable Receiving Transmitter Packets (echo)</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984263#M55527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer. I set the SRXDIS bit to 1 as you suggested. Below is the snippet for reference who finds this post. I needed to do it in&amp;nbsp;FLEXCAN_Init() function in the fsl_flexcan.c file. Otherwise, it didn't work outside of this function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mcrTemp |= (1 &amp;lt;&amp;lt; 17); //disable self reception (CANx_MCR SRXDIS=1)&lt;BR /&gt; /* Save MCR Configuation. */&lt;BR /&gt; base-&amp;gt;MCR = mcrTemp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Dec 2019 08:48:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KV11-CAN-Disable-Receiving-Transmitter-Packets-echo/m-p/984263#M55527</guid>
      <dc:creator>abdullah_cinar</dc:creator>
      <dc:date>2019-12-28T08:48:27Z</dc:date>
    </item>
  </channel>
</rss>

