<?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: Problem on KDS with CAN_LDD driver code for FlexCAN in Kinetis Design Studio</title>
    <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329817#M613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's difficult to quickly define what/where the problem is.&lt;/P&gt;&lt;P&gt;I would suggest you to see if the MCU V10.6 + MQX V4.1.1 is working or not before to switch directly to KDS.&lt;/P&gt;&lt;P&gt;Moving your working project (MCU V10.4 + MQX V4.0.2) to an intermediate solution based on MCU V10.6 + MQX V4.1.1 will be helpful to determine what is the problem.&lt;/P&gt;&lt;P&gt;As the MQX V4.1.1 is used by KDS too the impact of moving will be "reduced".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are docs explaining how to move a project from MCU V10.6 to KDS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="https://community.nxp.com/docs/DOC-102594"&gt;Importing MCU V10.6 projects (sample, using PE and MQX) under KDS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pascal Irrle&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>Tue, 18 Nov 2014 14:11:02 GMT</pubDate>
    <dc:creator>trytohelp</dc:creator>
    <dc:date>2014-11-18T14:11:02Z</dc:date>
    <item>
      <title>Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329816#M612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ported my K60-based application from CW 10.4 + MQX 4.0.2 to KDS 1.1.1 + MQX 4.1.1.&lt;/P&gt;&lt;P&gt;My BSP is based on PEx and my application uses both FlexCAN channels. For each of them I use a CAN_LDD driver.&lt;/P&gt;&lt;P&gt;But my test code on both CAN channels does not work any more.&lt;/P&gt;&lt;P&gt;The generated CAN_LDD driver code differs from my previous I got with CW 10.4 essentially on the SendFrame function (the FlexCAN peripheral is initialized in the same mode).&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach my test code and the ProcessorExpert project of my BSP.&lt;/P&gt;&lt;P&gt;On my board one CAN channel port is connected with the other CAN channel port and my code does the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Init CAN_LDD driver on both channels in the same mode.&lt;/LI&gt;&lt;LI&gt;Send a packet from the first CAN port and, after 300 msec, check its reception on the second CAN port.&lt;/LI&gt;&lt;LI&gt;Send a packet from the second CAN port and, after 300 msec, check its reception on the first CAN port.&lt;/LI&gt;&lt;/OL&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With my firmware compiled with CodeWarrior 10.4 and MQX 4.0.2 the test result is ok (so my hardware is good).&lt;/P&gt;&lt;P&gt;The test fails with my new firmware compiled with KDS 1.1.1 and MQX 4.1.1.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some notes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;All the other function of my KDS firmware are working properly (GPIO, UART, ADC, SPI, I2C, etc.) as with my CW firmware. So I can say my BSP library is good.&lt;/LI&gt;&lt;LI&gt;I tried to incremet up to 2 sec the reception waiting time, but this does not fix the issue.&lt;/LI&gt;&lt;LI&gt;All the CAN_LDD driver functions return without errors (except when ReadFrame function returns ERR_RXEMPTY).&lt;/LI&gt;&lt;LI&gt;With my scope I see that no packet is output from both the CAN channels when I call the SendFrame function.&lt;/LI&gt;&lt;LI&gt;My test passes only if I execute my application with the debugger and with a breakpoint set at the following line of the SendFrame function (in both drivers):&lt;/LI&gt;&lt;/UL&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;CAN_PDD_SetMessageBufferCode(CAN1_BASE_PTR, BufferIdx, TxMBCode); /* Set code for Tx buffer of the message */&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;This is very strange: how can the debugger breakpoint unblock the frame transmission on the CAN driver?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can you help me to fix this issue?&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-338503"&gt;TestCAN.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 11:19:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329816#M612</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-11-11T11:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329817#M613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's difficult to quickly define what/where the problem is.&lt;/P&gt;&lt;P&gt;I would suggest you to see if the MCU V10.6 + MQX V4.1.1 is working or not before to switch directly to KDS.&lt;/P&gt;&lt;P&gt;Moving your working project (MCU V10.4 + MQX V4.0.2) to an intermediate solution based on MCU V10.6 + MQX V4.1.1 will be helpful to determine what is the problem.&lt;/P&gt;&lt;P&gt;As the MQX V4.1.1 is used by KDS too the impact of moving will be "reduced".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are docs explaining how to move a project from MCU V10.6 to KDS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="https://community.nxp.com/docs/DOC-102594"&gt;Importing MCU V10.6 projects (sample, using PE and MQX) under KDS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pascal Irrle&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>Tue, 18 Nov 2014 14:11:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329817#M613</guid>
      <dc:creator>trytohelp</dc:creator>
      <dc:date>2014-11-18T14:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329818#M614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay, but Pascal is correct.&amp;nbsp; Please let us know if your project works with MCU V10.6 + MQX V4.1.1.&amp;nbsp; This will give us a better idea to determine where the problem lies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2014 16:50:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329818#M614</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-11-19T16:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329819#M615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just following up to see if you had any results from the suggestion that Pascal made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great weekend!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 17:42:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329819#M615</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-11-21T17:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329820#M616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I cannot compile my application with CW 10.6, because my CW license expired and my application code size is greater then 128 KB.&lt;/P&gt;&lt;P&gt;I should try to make another application with only my CAN test...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I don't understand is why my test passes if I execute my application with the debugger and with a breakpoint set at the following line of the SendFrame function (in both CAN_LDD drivers):&lt;/P&gt;&lt;P style="padding-left: 30px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;CAN_PDD_SetMessageBufferCode(CAN1_BASE_PTR, BufferIdx, TxMBCode); /* Set code for Tx buffer of the message */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;What can happen when the breakpoint stops the execution on that function call?&lt;/P&gt;&lt;P&gt;Maybe with that breakpoint the CAN interrupts are unblocked?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, how can I explore the Kinetis peripherals registers in KDS debugger? I can only see the MCU registers...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Best Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Nov 2014 10:46:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329820#M616</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-11-22T10:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329821#M617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;Hi Pascal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;I installed CW 10.6 Evaluation for Kinetis MCU to build my application CA_TB6 with MQX 4.1.1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;The PEx project for my BSP library is the same I used with KDS 1.1.1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;I have successfully built all my MQX libraries with the CW 10.6 GCC C Compiler.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;Building my application in Debug configuration outputs the following error stopping the build process:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;&lt;EM&gt;Errors occurred during the build.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;Errors running builder 'CDT Builder' on project 'CA_TB6'.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;&lt;EM&gt;java.lang.NullPointerException&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;Why I get that error? What is java.lang.NullPointerException?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;So, I cannot use the CW debugger.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;Building my application in Release configuration is successful, instead. So I can flash the ELF file into my board and test it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: 'Arial',sans-serif; color: #000000;"&gt;But I get the same situation as with KDS executable ELF file: all of my board functions work properly, except with my CAN test, that fails also with CW 10.6 GCC C Compiler.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;So I think my issue reside on my BSP created with the same PEx project file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;But where?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;Alessandro&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 13:26:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329821#M617</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-11-25T13:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329822#M618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;I found that my CAN test is successful with KDS only if I make one CAN_Disable – CAN_Enable cycle immediately after CAN_Init on both the PEx CAN_LDD drivers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;I attached my new version of may CAN test source code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;That is very strange, because both the PEx CAN_LDD drivers have the “Enabled in init. Code” property set to YES (as in my original project with CW 10.4 + MQX 4.0.2).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;The &lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;CAN_Disable – CAN_Enable cycle seems to put all the things to work properly ... Why?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;Best Regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;Alessandro&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif; color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 08:28:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329822#M618</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-01T08:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329823#M619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So sorry for the delay, as I was out on holiday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for this additional information.&amp;nbsp; This is really odd.&amp;nbsp; This seems to point to something getting generated slightly differently for KDS.&amp;nbsp; The CAN_Disable seems to set the module back to a default state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working with one of our CAN experts to determine what is taking place.&amp;nbsp; I will have more information for you this week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 22:47:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329823#M619</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-12-02T22:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329824#M620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Again Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please confirm with me whether you used the version of Processor Expert integrated with CW 10.4 or the Standalone version of Processor Expert initially?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 03:31:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329824#M620</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-12-03T03:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329825#M621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have always been using Processor Expert integrated with the Development Suite (Code Warrior or KDS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my BSP porting from CW 10.4 + MQX 4.0.2 to KDS 1.1.1 + MQX 4.1.1 I cloned for my board the MQX 4.1.1 bsp_twrk60n512, generating CW and KDS projects. Then I enabled Processor Expert for the KDS project of the BSP library (in MQX 4.1.1 the BSP KDS projects of all the Tower evaluation boards are not based on a PEx project like the corresponding CW projects). Finally I replaced the ProcessorExpert.pe project file with my original ProcessorExpert.pe project file used with CW 10.4 + MQX 4.0.2, paying attention to select "GNU C Compiler" in the CPU component "Build Option Compiler".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 08:14:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329825#M621</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-03T08:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329826#M622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From your earlier mention that the only difference that you observed between the drivers was in the SendFrame.&amp;nbsp; When I looked at the two generated files, the difference was that the PEx with CW had the following while PEx with KDS did not:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if ((StatusReg &amp;amp; (CAN_PDD_RECEIVING_MESSAGE | CAN_PDD_TRANSMITTING_MESSAGE)) != 0x00U) { /* Are both IDLE and TX/RX bits of the status register cleared?*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return ERR_BUSY;&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; /* If yes then error */&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is reading the CAN Interrupt Flags.&amp;nbsp; Have you tried to implement this in the PEx with KDS generated code as seen in the attachment?&amp;nbsp; I believe that this may be blocking the Message Buffer.&amp;nbsp; Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still awaiting a response from our CAN Expert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 20:50:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329826#M622</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-12-05T20:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329827#M623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CW 10.4 is based on Processor Expert 10.2 [05.07] and the CAN_LDD code is generated with StatusReg reading.&lt;/P&gt;&lt;P&gt;CW 10.6 is based on Processor Expert 10.3 [05.09] and KDS 1.1.1 is based on Processor Expert 10.4 [05.10]. Both of them generate the CAN_LDD code without StatusReg reading. The new version of CAN_LDD generated code is explained in this thread: &lt;A href="https://community.nxp.com/message/394093"&gt;Problem with generated CAN_LDD driver code for FlexCAN&lt;/A&gt; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before manually changing my CAN_LDD generated code, I tried to ask for support on my issue (also in that thread). Now I'm going to make the change and test it. I will tell you my test result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2014 08:49:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329827#M623</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-09T08:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329828#M624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I worked on my KDS project.&lt;/P&gt;&lt;P&gt;I manually inserted the StatusReg reading into the SendFrame function of the CAN_LDD generated code and deleted my CAN_Disable - CAN_Enable cycle from my source code, but my CAN test fails like with the original CAN_LDD generated code.&lt;/P&gt;&lt;P&gt;With the modified CAN_LDD generated code my CAN test also fails after re-inserting my CAN_Disable - CAN_Enable cycle in my source code.&lt;/P&gt;&lt;P&gt;Very strange indeed: It seems like my CAN test works different if I add or delete some code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any news from your CAN Expert?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 17:04:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329828#M624</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-11T17:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329829#M625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Again Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the update.&amp;nbsp; I did hear back from our CAN Expert.&amp;nbsp; They recommended some general updates to the CANBUS_Init task to help prevent many issues difficult to debug in the future.&amp;nbsp; I will pass those on to the PEx Team.&amp;nbsp; However, I know that your code works with the code generated from the CW 10.4 PEx.&amp;nbsp; They also agreed with me in that any reading on Control/Status word from MB may unlock it, so it was good to try.&amp;nbsp; If CPU was treating a reception frame, the transmission task cannot read/write on the same MB before clearing the IFLAG due to RX frame.&amp;nbsp; However, that did not work, so we will have to continue our debug effort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In regards to your comment, "With the modified CAN_LDD generated code my CAN test also fails after re-inserting my CAN_Disable - CAN_Enable cycle in my source code.&amp;nbsp; Very strange indeed: It seems like my CAN test works different if I add or delete some code...", do you mean that once you remove the 'StatusReg read' from the SendFrame function that your test will no longer work when you re-insert the CAN_Disable and CAN_enable back into your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reference to thread: &lt;A _jive_internal="true" href="https://community.nxp.com/message/394093#394093"&gt;https://community.freescale.com/message/394093#394093&lt;/A&gt;.&amp;nbsp; I was not aware of this.&amp;nbsp; Let me work with our PEx Team to figure out a solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your patience,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2014 17:15:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329829#M625</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-12-12T17:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329830#M626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I inserted the "StatusReg reading" in the CAN_LDD generated code (by PEx in KDS) and I tried my original test: FAILED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I tried my new test with the CAN_Disable - CAN_Enable cycle with the same modified CAN_LDD generated code above: FAILED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this time, only my new test with the CAN_Disable - CAN_Enable cycle passes with the unchanged CAN_LDD generated code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2014 17:38:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329830#M626</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-12T17:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329831#M627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the the repetition, but I want to be absolutely clear on the observed behavior.&amp;nbsp; When you state the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;"Then I tried my new test with the CAN_Disable - CAN_Enable cycle with the same modified CAN_LDD generated code above: FAILED."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp; * Then I tried my new test with the CAN_Disable - CAN_Enable cycle with the same modified CAN_LDD generated code above (with StatusReg reading): FAILED.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt; * Then I tried my new test with the CAN_Disable - CAN_Enable cycle with the same modified CAN_LDD generated code above (without StatusReg reading): FAILED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Dec 2014 22:16:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329831#M627</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2014-12-12T22:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329832#M628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;&lt;EM&gt;Then I tried my new test with the CAN_Disable - CAN_Enable cycle with the same modified CAN_LDD generated code above (with StatusReg reading): FAILED.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Alessandro&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Dec 2014 09:01:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329832#M628</guid>
      <dc:creator>Vagni</dc:creator>
      <dc:date>2014-12-13T09:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem on KDS with CAN_LDD driver code for FlexCAN</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329833#M629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hi Alessandro,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Happy New Year to you!&amp;nbsp; I thought that this response had gone out prior to the Christmas Break.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I communicated with someone on our Processor Expert Team and they &lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif';"&gt;created a new project in KDS 2.0.0 (Test FlexCan on MK60N512LL100) without MQX based on the TestCAN.zip files and verified the functionality of the FlexCAN driver – it works properly on TWR-K60N512 target board with TWS-SER board and one external high-speed CAN transceiver.&amp;nbsp; They also&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif';"&gt; have added MQXLite into this project and updated the code (the TestCAN_1_2() routine called from an mqx task; the _&lt;EM&gt;time&lt;/EM&gt;_delay is replaced by _&lt;EM&gt;time&lt;/EM&gt;_delay&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;_ticks() method of mqxlite), which also works properly, so they are not able to reproduce the problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;So the theory here is that&amp;nbsp; there might be an issue with the application that didn't present itself in the original driver but shows itself in the new version with the appropriate required updates for handling critical code, etc.&amp;nbsp; For example, it may be an interrupt vector priorities issue or an error in the application. The whole application must be analyzed on target device to find the root cause.&amp;nbsp; It may be that there still might be an issue in the FlexCAN driver itself, but it can only be reproduced in this special case.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;If you can reproduce this on a TWR system, we would be more than happy to help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica','sans-serif';"&gt;Carlos&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2015 17:02:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Problem-on-KDS-with-CAN-LDD-driver-code-for-FlexCAN/m-p/329833#M629</guid>
      <dc:creator>carlos_chavez</dc:creator>
      <dc:date>2015-01-07T17:02:45Z</dc:date>
    </item>
  </channel>
</rss>

