<?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>LPC Microcontrollers中的主题 Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619817#M24251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code comes from NXP's official example.But I do not know how to change to 29ID.&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt; uint32_t CanApiClkInitTable[2];&lt;BR /&gt; /* Publish CAN Callback Functions */&lt;BR /&gt; CCAN_CALLBACKS_T callbacks = {&lt;BR /&gt; CAN_rx,&lt;BR /&gt; CAN_tx,&lt;BR /&gt; CAN_error,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; };&lt;BR /&gt; SystemCoreClockUpdate();&lt;BR /&gt; //Board_Init();&lt;BR /&gt; baudrateCalculate(TEST_CCAN_BAUD_RATE, CanApiClkInitTable);&lt;/P&gt;&lt;P&gt;LPC_CCAN_API-&amp;gt;init_can(&amp;amp;CanApiClkInitTable[0], TRUE);&lt;BR /&gt; /* Configure the CAN callback functions */&lt;BR /&gt; LPC_CCAN_API-&amp;gt;config_calb(&amp;amp;callbacks);&lt;BR /&gt; /* Enable the CAN Interrupt */&lt;BR /&gt; NVIC_EnableIRQ(CAN_IRQn);&lt;/P&gt;&lt;P&gt;/* Send a simple one time CAN message */&lt;BR /&gt; msg_obj.msgobj = 0;&lt;BR /&gt; msg_obj.mode_id = 0x345;&lt;BR /&gt; msg_obj.mask = 0x0;&lt;BR /&gt; msg_obj.dlc = 4;&lt;BR /&gt; msg_obj.data[0] = 'T'; // 0x54&lt;BR /&gt; msg_obj.data[1] = 'E'; // 0x45&lt;BR /&gt; msg_obj.data[2] = 'S'; // 0x53&lt;BR /&gt; msg_obj.data[3] = 'T'; // 0x54&lt;BR /&gt; LPC_CCAN_API-&amp;gt;can_transmit(&amp;amp;msg_obj);&lt;/P&gt;&lt;P&gt;/* Configure message object 1 to receive all 11-bit messages 0x400-0x4FF */&lt;BR /&gt; msg_obj.msgobj = 1;&lt;BR /&gt; msg_obj.mode_id = 0x400;&lt;BR /&gt; msg_obj.mask = 0x700;&lt;BR /&gt; LPC_CCAN_API-&amp;gt;config_rxmsgobj(&amp;amp;msg_obj);&lt;BR /&gt;#if 0&lt;BR /&gt; while (1) {&lt;BR /&gt; //__WFI(); /* Go to Sleep */&lt;BR /&gt; }&lt;BR /&gt;#endif&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Apr 2017 08:33:34 GMT</pubDate>
    <dc:creator>vnv</dc:creator>
    <dc:date>2017-04-20T08:33:34Z</dc:date>
    <item>
      <title>Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619814#M24248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The CAN messages are being transmitted and received successfully in the Standard ID mode already.&lt;/P&gt;&lt;P&gt;/* Data structure for a CAN message */&lt;BR /&gt;typedef struct&lt;BR /&gt;{&lt;BR /&gt; uint32_t id;&lt;BR /&gt; uint32_t dlc;&lt;BR /&gt; uint32_t data[4];&lt;BR /&gt;} message_object;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define MSG_OBJ_MAX 0x0020&lt;BR /&gt;#define DLC_MAX 8&lt;/P&gt;&lt;P&gt;#define RX_MSG_ID 0x300&lt;BR /&gt;#define RX_EXT_MSG_ID 0x00100000&lt;/P&gt;&lt;P&gt;#define TX_MSG_ID 0x200&lt;BR /&gt;#define TX_EXT_MSG_ID 0x00200000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void CAN_ConfigureMessages( void )&lt;BR /&gt;{&lt;BR /&gt; uint32_t i;&lt;BR /&gt; uint32_t ext_frame = 0;&lt;/P&gt;&lt;P&gt;/* extended receive only for 32 objects */&lt;BR /&gt; &lt;BR /&gt; for ( i = 0; i &amp;lt; MSG_OBJ_MAX; i++ )&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_CMDMSK = WR|MASK|ARB|CTRL|DATAA|DATAB;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Mxtd: 1, Mdir: 0, Mask is 0x1FFFFFFF*/&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_MSK1 = ID_EXT_MASK &amp;amp; 0xFFFF;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_MSK2 = MASK_MXTD | (ID_EXT_MASK &amp;gt;&amp;gt; 16);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/*MsgVal: 1, Mtd: 1, Dir: 0, ID = 0x100000*/&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_ARB1 = (RX_EXT_MSG_ID+i) &amp;amp; 0xFFFF;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_ARB2 = ID_MVAL | ID_MTD | ((RX_EXT_MSG_ID+i) &amp;gt;&amp;gt; 16);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_MCTRL = UMSK|RXIE|EOB|DLC_MAX;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_DA1 = 0x0000;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_DA2 = 0x0000;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_DB1 = 0x0000;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_DB2 = 0x0000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Transfer data to message RAM */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPC_CAN-&amp;gt;IF1_CMDREQ = i+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while( LPC_CAN-&amp;gt;IF1_CMDREQ &amp;amp; IFCREQ_BUSY );&lt;BR /&gt; }&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;return;&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2017 10:03:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619814#M24248</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-18T10:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619815#M24249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see anything wrong in your code setting the message object configuration and suspect that you don't have the acceptance filter if used or mask setting correctly. Attached here is some code I used long time ago.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 00:56:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619815#M24249</guid>
      <dc:creator>Dezheng_Tang</dc:creator>
      <dc:date>2017-04-20T00:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619816#M24250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dezheng Tang,&lt;/P&gt;&lt;P&gt;The code you have attached is the default code available as part of the example. Could you please provide the code with the acceptance filter and mask set for receiving only CAN extended 29 bit identifiers? or let me know where and what I need to change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Praseen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 08:11:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619816#M24250</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-20T08:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619817#M24251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code comes from NXP's official example.But I do not know how to change to 29ID.&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt; uint32_t CanApiClkInitTable[2];&lt;BR /&gt; /* Publish CAN Callback Functions */&lt;BR /&gt; CCAN_CALLBACKS_T callbacks = {&lt;BR /&gt; CAN_rx,&lt;BR /&gt; CAN_tx,&lt;BR /&gt; CAN_error,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; NULL,&lt;BR /&gt; };&lt;BR /&gt; SystemCoreClockUpdate();&lt;BR /&gt; //Board_Init();&lt;BR /&gt; baudrateCalculate(TEST_CCAN_BAUD_RATE, CanApiClkInitTable);&lt;/P&gt;&lt;P&gt;LPC_CCAN_API-&amp;gt;init_can(&amp;amp;CanApiClkInitTable[0], TRUE);&lt;BR /&gt; /* Configure the CAN callback functions */&lt;BR /&gt; LPC_CCAN_API-&amp;gt;config_calb(&amp;amp;callbacks);&lt;BR /&gt; /* Enable the CAN Interrupt */&lt;BR /&gt; NVIC_EnableIRQ(CAN_IRQn);&lt;/P&gt;&lt;P&gt;/* Send a simple one time CAN message */&lt;BR /&gt; msg_obj.msgobj = 0;&lt;BR /&gt; msg_obj.mode_id = 0x345;&lt;BR /&gt; msg_obj.mask = 0x0;&lt;BR /&gt; msg_obj.dlc = 4;&lt;BR /&gt; msg_obj.data[0] = 'T'; // 0x54&lt;BR /&gt; msg_obj.data[1] = 'E'; // 0x45&lt;BR /&gt; msg_obj.data[2] = 'S'; // 0x53&lt;BR /&gt; msg_obj.data[3] = 'T'; // 0x54&lt;BR /&gt; LPC_CCAN_API-&amp;gt;can_transmit(&amp;amp;msg_obj);&lt;/P&gt;&lt;P&gt;/* Configure message object 1 to receive all 11-bit messages 0x400-0x4FF */&lt;BR /&gt; msg_obj.msgobj = 1;&lt;BR /&gt; msg_obj.mode_id = 0x400;&lt;BR /&gt; msg_obj.mask = 0x700;&lt;BR /&gt; LPC_CCAN_API-&amp;gt;config_rxmsgobj(&amp;amp;msg_obj);&lt;BR /&gt;#if 0&lt;BR /&gt; while (1) {&lt;BR /&gt; //__WFI(); /* Go to Sleep */&lt;BR /&gt; }&lt;BR /&gt;#endif&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 08:33:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619817#M24251</guid>
      <dc:creator>vnv</dc:creator>
      <dc:date>2017-04-20T08:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619818#M24252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi VN V,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code you have given does not match the current code for CAN filtering (29 bits)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praseen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 14:36:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619818#M24252</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-20T14:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619819#M24253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In CAN_ConfigureMessages(), the code you have (can.c) configured all 32 message objects, both STD and EXT messages, both TX and RX, if you want to&amp;nbsp;receive EXT message only, configure EXT messages only.&lt;/P&gt;&lt;P&gt;You can also use the BASIC mode which doesn't use message RAM, see CAN chapter 16.7.2 and 16.7.2.4.4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 21:27:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619819#M24253</guid>
      <dc:creator>Dezheng_Tang</dc:creator>
      <dc:date>2017-04-20T21:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619820#M24254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dezheng Tang,&lt;/P&gt;&lt;P&gt;I used the code you had sent and used the filter in &lt;STRONG&gt;CAN_ConfigureMessages &lt;/STRONG&gt;function for CAN reception. This filter is configured for both transmit and receive. So when I tested the code, I found that the extended id part of it was not working as expected. Using the default filter in the function &lt;STRONG&gt;CAN_ConfigureMessages &lt;/STRONG&gt;I am able to receive 0x101, 0x105, 0x109, 0x111, 0x115, 0x119 message ID based CAN messages, since the macro RX_MSG_ID is set as 100.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the above mentioned&amp;nbsp;filter I should be able to receive the extended CAN ids 0x00100003, 0x00100007 since the value of RX_EXT_MSG_ID is 0x00100000, however this does not happen. Could you please let me know what I am doing wrong?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Sudarshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 08:59:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619820#M24254</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-21T08:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619821#M24255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="" style="color: #777777; background-color: #ffffff; font-size: 13px; padding-bottom: 40px;"&gt;&lt;DIV style="margin-right: 4px; padding-bottom: 42px;"&gt;&lt;DIV class="" style="border-width: 1px; border-style: solid; border-color: #c0c0c0 #d9d9d9 #d9d9d9; margin-bottom: 8px;"&gt;&lt;DIV&gt;&lt;TEXTAREA class="" dir="ltr" disabled="disabled" name="text-is" style="color: silver; background-color: rgba(255, 255, 255, 0); border: none; font-size: 24px; padding: 8px 20px 32px 8px;"&gt;&amp;lt;div id="inner-editor"&amp;gt;&amp;lt;/div&amp;gt;&lt;/TEXTAREA&gt;&lt;/DIV&gt;&lt;DIV style="margin-top: -7px; padding: 0px 4px 4px;"&gt;&lt;DIV&gt;&lt;DIV class="" data-tooltip="朗读" data-tooltip-align="t,c" style="color: #444444; background: 0px 50%; border: 1px solid transparent; font-weight: bold; font-size: 11px; padding: 0px 2px 0px 1px;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" data-tooltip="打开语音输入" data-tooltip-align="t,c" style="color: #444444; background: 0px 50%; border: 1px solid transparent; font-weight: bold; font-size: 11px; padding: 0px 2px;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV style="font-size: 12px; padding-right: 10px; padding-bottom: 6px;"&gt;&lt;DIV class="" style="color: rgba(0, 0, 0, 0.541176);"&gt;6/5000&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" dir="ltr" style="margin-top: 12px; margin-bottom: 16px; padding: 0px 8px;"&gt;Nǐ shì zhōngguó rén ma&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #777777; background-color: #ffffff; font-size: 13px;"&gt;&lt;DIV style="margin-left: 4px; padding-bottom: 20px;"&gt;&lt;DIV&gt;&lt;DIV style="background: whitesmoke; border: 1px solid whitesmoke; margin: 0px 0px 8px;"&gt;&lt;DIV&gt;&lt;DIV dir="ltr" style="padding: 8px;"&gt;&lt;SPAN class="" lang="en" style="color: #222222; font-size: 24px;"&gt;&lt;SPAN class=""&gt;are you Chinese？&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 09:08:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619821#M24255</guid>
      <dc:creator>vnv</dc:creator>
      <dc:date>2017-04-21T09:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619822#M24256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dezheng Tang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please reply to the above mail, please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sudarshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2017 12:34:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619822#M24256</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-24T12:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Will someone please provide a CAN message object config code example to only receive only CAN extended ID 29 bit id based CAN messages on the LPC11C24. I have modified the CAN_ConfigureMessages in the example code as below, but its still not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619823#M24257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;This issue is currently resolved. There was nothing wrong with the firmware or hardware configuration for the filter. The issue was with the tool we had used to transmit or receive the extended CAN IDs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Sudarshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 05:40:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Will-someone-please-provide-a-CAN-message-object-config-code/m-p/619823#M24257</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-05-03T05:40:46Z</dc:date>
    </item>
  </channel>
</rss>

