<?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: Help with FRDM-KE06Z CAN bus communication using Process Expert in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Help-with-FRDM-KE06Z-CAN-bus-communication-using-Process-Expert/m-p/971583#M55230</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Antonio,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please try using the examples provided in the &lt;A href="https://www.nxp.com/webapp/Download?colCode=FRDM-KEXX-Driver-Library-Package&amp;amp;appType=license"&gt;Driver Library Package&lt;/A&gt;. There are some MSCAN projects that may be useful for you. These examples are implemented for IAR, CW and Keil.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition, there is an MCUXpresso SDK available for FRDM-KE06Z. You can download the latest version from the link below:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://mcuxpresso.nxp.com/en/welcome" title="https://mcuxpresso.nxp.com/en/welcome"&gt;Welcome | MCUXpresso SDK Builder&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Aug 2019 18:58:31 GMT</pubDate>
    <dc:creator>FelipeGarcia</dc:creator>
    <dc:date>2019-08-28T18:58:31Z</dc:date>
    <item>
      <title>Help with FRDM-KE06Z CAN bus communication using Process Expert</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Help-with-FRDM-KE06Z-CAN-bus-communication-using-Process-Expert/m-p/971582#M55229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope somebody can help me find a solution for this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I built up a CAN bus made of 6 nodes using PIC's micro controllers (Microchip ones), they're repeatedly talking to each node, everything seems to be working fine and now I intend to add an extra Node to monitor messages to see whats going on in the bus, I tried to connect the board FRDM-KE06Z since it has a built-in CAN controller (MSCAN) as well as a CAN transceiver, i set up the CAN component as shown below.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Interrupt service : Disabled &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Global Acceptance Mask : yes &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Acceptance mask for buffer 0..n : 1FFFFFFF &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Message buffers : 1, Buffer0 - Buffer type: Receive &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Accept frames : Standard &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Message ID : 7FF &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Bit rate : 100kbit/s &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Loop mode : no &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Enabled in init. code : yes&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; • Methods to enable : ReadFrame,SetRxBufferID &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;• Events to enable : OnFullRxBuffer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I generated my code by means of Process Expert, this part of the code waits for a frame to be received in one the buffers but it never gets out of that loop, meaning that a message is never received in spite of properly having configured the CAN component, my CAN bus is running at 100 kbs so is the CAN configuration of the FRDM-KE06Z&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;while (!DataFrameRxFlg) {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Wait until data frame is received */&amp;nbsp;&amp;nbsp;&amp;nbsp; CAN2_Main(MyCANPtr);&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Frame.Data = InpData;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already tried to solve it using two different IDE's (MCUxpresso and Code Warrior) and the same issue occurred, the flag &lt;STRONG&gt;DataFrameRxFlg&lt;/STRONG&gt; never changes from FALSE to TRUE, I also tried to set the module to listen only mode but did not work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2019 13:18:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Help-with-FRDM-KE06Z-CAN-bus-communication-using-Process-Expert/m-p/971582#M55229</guid>
      <dc:creator>antonio_estupin</dc:creator>
      <dc:date>2019-08-26T13:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with FRDM-KE06Z CAN bus communication using Process Expert</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/Help-with-FRDM-KE06Z-CAN-bus-communication-using-Process-Expert/m-p/971583#M55230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Antonio,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please try using the examples provided in the &lt;A href="https://www.nxp.com/webapp/Download?colCode=FRDM-KEXX-Driver-Library-Package&amp;amp;appType=license"&gt;Driver Library Package&lt;/A&gt;. There are some MSCAN projects that may be useful for you. These examples are implemented for IAR, CW and Keil.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition, there is an MCUXpresso SDK available for FRDM-KE06Z. You can download the latest version from the link below:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://mcuxpresso.nxp.com/en/welcome" title="https://mcuxpresso.nxp.com/en/welcome"&gt;Welcome | MCUXpresso SDK Builder&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2019 18:58:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/Help-with-FRDM-KE06Z-CAN-bus-communication-using-Process-Expert/m-p/971583#M55230</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-08-28T18:58:31Z</dc:date>
    </item>
  </channel>
</rss>

