<?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: can't send data about CAN Module in TWR-K60F120 in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713546#M43829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. You can use it.&lt;/P&gt;&lt;P&gt;The usage of CAN_LDD is the same. You can create a Processor Expert project and refer that example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2017 08:38:17 GMT</pubDate>
    <dc:creator>Robin_Shen</dc:creator>
    <dc:date>2017-09-26T08:38:17Z</dc:date>
    <item>
      <title>can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713543#M43826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Everyone:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I am learning the CAN&amp;nbsp;module.This is my program.When it is debugged, the flag about sending data doesn't be equal to be 1,so it can't be sent successfully.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;main.c:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/32189iDFF9BA8A3F2CBCE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;CANInit(CAN module be initialized）&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;uint8 CANInit(uint8 CANChannel,uint32 baudrateKHz,uint8 selfLoop,uint8 idMask)&lt;BR /&gt;{&lt;BR /&gt; int8 i;&lt;BR /&gt; CAN_MemMapPtr CANBaseAdd;&lt;BR /&gt; &lt;BR /&gt; //使能FlexCAN外部时钟&lt;BR /&gt; OSC0_CR |= OSC_CR_ERCLKEN_MASK | OSC_CR_EREFSTEN_MASK;//*晶振提供外部时钟&lt;BR /&gt; &lt;BR /&gt; //通过模块号选择模块基地址&lt;BR /&gt; if(CANChannel == 0)&lt;BR /&gt; CANBaseAdd = CAN0_BASE_PTR;&lt;BR /&gt; else if(CANChannel == 1)&lt;BR /&gt; CANBaseAdd = CAN1_BASE_PTR;&lt;BR /&gt; &lt;BR /&gt; //使能CAN模块时钟&lt;BR /&gt; if(CANBaseAdd == CAN0_BASE_PTR)&lt;BR /&gt; SIM_SCGC6 |= SIM_SCGC6_FLEXCAN0_MASK;//使能CAN0的时钟模块&lt;BR /&gt; else&lt;BR /&gt; SIM_SCGC3 |= SIM_SCGC3_FLEXCAN1_MASK;//使能CAN1的时钟模块&lt;BR /&gt; /* &lt;BR /&gt; //使能CAN中断&lt;BR /&gt; if(CANChannel == 0)//使能CAN0的中断 &lt;BR /&gt; { &lt;BR /&gt; NVICICPR0 = (NVICICPR0 &amp;amp; ~(0x07&amp;lt;&amp;lt;29)) | (0x07&amp;lt;&amp;lt;29);//清除挂载在FlexCAN0的中断 &lt;BR /&gt; NVICISER0 = (NVICISER0 &amp;amp; ~(0x07&amp;lt;&amp;lt;29)) | (0x07&amp;lt;&amp;lt;29);//使能FlexCAN0中断 &lt;BR /&gt; &lt;BR /&gt; NVICICPR1 = (NVICICPR1 &amp;amp; ~(0x1F&amp;lt;&amp;lt;0)) | (0x1F);//清除挂载在FlexCAN0的中断 &lt;BR /&gt; NVICISER1 = (NVICISER1 &amp;amp; ~(0x1F&amp;lt;&amp;lt;0)) | (0x1F);//使能FlexCAN0中断 &lt;BR /&gt; } &lt;BR /&gt; else //使能CAN1的中断&lt;BR /&gt; {&lt;BR /&gt; NVICICPR1 = (NVICICPR1 &amp;amp; ~(0xFF&amp;lt;&amp;lt;5)) | (0xFF&amp;lt;&amp;lt;5);//清除挂载在FlexCAN1的中断 &lt;BR /&gt; NVICISER1 = (NVICISER1 &amp;amp; ~(0xFF&amp;lt;&amp;lt;5)) | (0xFF&amp;lt;&amp;lt;5);//使能FlexCAN1中断 &lt;BR /&gt; }&lt;BR /&gt;*/&lt;BR /&gt; //配置CAN_RX/TX复用引脚功能&lt;BR /&gt; if(CANChannel == 0)&lt;BR /&gt; {&lt;BR /&gt; PORTE_PCR24 = PORT_PCR_MUX(2) | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK; //上拉 *PORT PCR寄存器的设置&lt;BR /&gt; PORTE_PCR25 = PORT_PCR_MUX(2) | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK; //上拉&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; PORTC_PCR17 = PORT_PCR_MUX(2) | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK; //Tx上拉&lt;BR /&gt; PORTC_PCR16 = PORT_PCR_MUX(2) | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK; //Rx上拉&lt;BR /&gt; } &lt;BR /&gt; //选择时钟源，外设时钟48MHz，内部时钟：12MHz&lt;BR /&gt; CAN_CTRL1_REG(CANBaseAdd) |= CAN_CTRL1_CLKSRC_MASK;//选择内部时钟 &lt;BR /&gt;// CAN_CTRL1_REG(CANBaseAdd) &amp;amp;=~CAN_CTRL1_CLKSRC_MASK;//应该是外部时钟源吧？&lt;BR /&gt; &lt;BR /&gt; CAN_MCR_REG(CANBaseAdd) |= CAN_MCR_FRZ_MASK; //使能冻结模式 &lt;BR /&gt; CAN_MCR_REG(CANBaseAdd) &amp;amp;= ~CAN_MCR_MDIS_MASK;//使能CAN模块&lt;BR /&gt; //确认已退出冻结模式&lt;BR /&gt; while((CAN_MCR_LPMACK_MASK &amp;amp; CAN_MCR_REG(CANBaseAdd)));&lt;BR /&gt; //软件复位&lt;BR /&gt; CAN_MCR_REG(CANBaseAdd) ^= CAN_MCR_SOFTRST_MASK; &lt;BR /&gt; //等待复位完成&lt;BR /&gt; while(CAN_MCR_SOFTRST_MASK &amp;amp; CAN_MCR_REG(CANBaseAdd)); &lt;BR /&gt; //等待进入冻结模式 &lt;BR /&gt; while(!(CAN_MCR_FRZACK_MASK &amp;amp; CAN_MCR_REG(CANBaseAdd)));&lt;BR /&gt; // Set local priority&lt;BR /&gt; CAN_MCR_REG(CANBaseAdd)|=CAN_MCR_LPRIOEN_MASK; &lt;BR /&gt; //将16个邮箱缓冲区内容清0&lt;BR /&gt; for(i=0;i&amp;lt;16;i++)&lt;BR /&gt; {&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[i].CS = 0x00000000;&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[i].ID = 0x00000000;&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[i].WORD0 = 0x00000000;&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[i].WORD1 = 0x00000000;&lt;BR /&gt; }&lt;BR /&gt; //接收邮箱过滤IDE比较，RTR不比较&lt;BR /&gt; CAN_CTRL2_REG(CANBaseAdd) &amp;amp;= ~CAN_CTRL2_EACEN_MASK;//0 Rx Mailbox filter’s IDE bit is always compared and RTR is never compared despite mask bits.&lt;BR /&gt; //远程请求帧产生&lt;BR /&gt; CAN_CTRL2_REG(CANBaseAdd) &amp;amp;= ~CAN_CTRL2_RRS_MASK; //0 Remote Response Frame is generated.&lt;BR /&gt; //邮箱首先从接收FIFO队列匹配然后再在邮箱中匹配&lt;BR /&gt; CAN_CTRL2_REG(CANBaseAdd) &amp;amp;= ~CAN_CTRL2_MRP_MASK;//0 Matching starts from Rx FIFO and continues on Mailboxes&lt;BR /&gt; //使用一个32位过滤器&lt;BR /&gt; CAN_MCR_REG(CANBaseAdd) |= (CAN_MCR_REG(CANBaseAdd) &amp;amp; ~CAN_MCR_IDAM_MASK) | CAN_MCR_IDAM(0);&lt;BR /&gt; //设置波特率&lt;BR /&gt; if(SetCANBand(CANChannel,baudrateKHz) == 1)//若设置错误&lt;BR /&gt; return 1;&lt;BR /&gt; //模式选择：回环模式或正常模式&lt;BR /&gt; //采用正常模式，即注释以下程序&lt;BR /&gt; // if(1==selfLoop)&lt;BR /&gt; // CAN_CTRL1_REG(CANBaseAdd) |= CAN_CTRL1_LPB_MASK;//使用回环模式&lt;/P&gt;&lt;P&gt;//初始化掩码寄存器&lt;BR /&gt; if(1==idMask)//屏蔽ID&lt;BR /&gt; {&lt;BR /&gt; CAN_RXMGMASK_REG(CANBaseAdd) = 0x1FFFFFFF;&lt;BR /&gt; CAN_RX14MASK_REG(CANBaseAdd) = 0x1FFFFFFF;&lt;BR /&gt; CAN_RX15MASK_REG(CANBaseAdd) = 0x1FFFFFFF;&lt;BR /&gt; }&lt;BR /&gt; else//不屏蔽ID&lt;BR /&gt; {&lt;BR /&gt; CAN_RXMGMASK_REG(CANBaseAdd) = 0x0;&lt;BR /&gt; CAN_RX14MASK_REG(CANBaseAdd) = 0x0;&lt;BR /&gt; CAN_RX15MASK_REG(CANBaseAdd) = 0x0;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;//如果单独掩码功能使能，为每个队列初始化单独的掩码寄存器&lt;BR /&gt; if(CAN_MCR_REG(CANBaseAdd) &amp;amp; CAN_MCR_IRMQ_MASK)&lt;BR /&gt; {&lt;BR /&gt; for(i = 0; i &amp;lt; NUMBER_OF_MB ; i++)&lt;BR /&gt; { &lt;BR /&gt; CANBaseAdd-&amp;gt;RXIMR[i] = 0x1FFFFFFFL;&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; //只有在冻结模式下才能配置，配置完推出冻结模式&lt;BR /&gt; CAN_MCR_REG(CANBaseAdd) &amp;amp;= ~(CAN_MCR_HALT_MASK);&lt;BR /&gt; //等待直到退出冻结模式&lt;BR /&gt; while( CAN_MCR_REG(CANBaseAdd) &amp;amp; CAN_MCR_FRZACK_MASK); &lt;BR /&gt; //等到不在冻结模式，休眠模式或者停止模式&lt;BR /&gt; while((CAN_MCR_REG(CANBaseAdd) &amp;amp; CAN_MCR_NOTRDY_MASK));&lt;BR /&gt; return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;CANSendData(Send Data）&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;uint8 CANSendData(uint8 CANChannel,uint16 iMB, uint32 id,uint8 length,uint8 Data[])&lt;BR /&gt;{&lt;BR /&gt; int16 i,wno,bno;&lt;BR /&gt; uint32 word[2] = {0};&lt;BR /&gt; CAN_MemMapPtr CANBaseAdd;&lt;BR /&gt; if(CANChannel == 0)&lt;BR /&gt; CANBaseAdd = CAN0_BASE_PTR;&lt;BR /&gt; else if(CANChannel == 1)&lt;BR /&gt; CANBaseAdd = CAN1_BASE_PTR;&lt;BR /&gt; &lt;BR /&gt; //缓冲区和数据长度设置错误&lt;BR /&gt; if(iMB &amp;gt;= NUMBER_OF_MB || length &amp;gt;8)&lt;BR /&gt; return 1; //超出范围&lt;BR /&gt; &lt;BR /&gt; //转换8个字节转换成32位的word存储&lt;BR /&gt; wno = (length-1)&amp;gt;&amp;gt;2;//是否超过4字节&lt;BR /&gt; bno = (length-1)%4; //&lt;BR /&gt; if(wno &amp;gt; 0) //长度大于4(即发送数据超过4字节)&lt;BR /&gt; {&lt;BR /&gt; word[0] = (&lt;BR /&gt; (Data[0]&amp;lt;&amp;lt;24) &lt;BR /&gt; | (Data[1]&amp;lt;&amp;lt;16) &lt;BR /&gt; | (Data[2]&amp;lt;&amp;lt; 8) &lt;BR /&gt; | Data[3]&lt;BR /&gt; );&lt;BR /&gt; }&lt;BR /&gt; for(i=0;i&amp;lt;=bno;i++)&lt;BR /&gt; word[wno] |= Data[(wno&amp;lt;&amp;lt;2)+i] &amp;lt;&amp;lt; (24-(i&amp;lt;&amp;lt;3));&lt;/P&gt;&lt;P&gt;/////////////////////////////////////////////////////// &lt;BR /&gt; // ID 格式&lt;BR /&gt; // B31 30 29 28 27 26 ... 11 10 9 8 7 6 5 4 3 2 1 0&lt;BR /&gt; // | | | |&lt;BR /&gt; // | | |------------------------------------|&lt;BR /&gt; // | | |--&amp;gt; 29 位 ID&lt;BR /&gt; // | |&lt;BR /&gt; // | |--&amp;gt; RTR 1: 远程帧, 0: 数据帧&lt;BR /&gt; // |&lt;BR /&gt; // |-------&amp;gt; IDE 1 : 扩展ID, 0: 标准ID&lt;BR /&gt; ///////////////////////////////////////////////////////&lt;BR /&gt; &lt;BR /&gt; //通过id判断帧类型——扩展帧&lt;BR /&gt; wno = (id &amp;amp; CAN_MSG_IDE_MASK)&amp;gt;&amp;gt;CAN_MSG_IDE_BIT_NO; //IDE&lt;BR /&gt; //通过id判断帧类型——远程帧&lt;BR /&gt; bno = (id &amp;amp; CAN_MSG_TYPE_MASK)&amp;gt;&amp;gt;CAN_MSG_TYPE_BIT_NO;//RTR&lt;BR /&gt; &lt;BR /&gt; //获得ID位数&lt;BR /&gt; i = wno? 0: FLEXCAN_MB_ID_STD_BIT_NO;&lt;BR /&gt; &lt;BR /&gt; //以下四步骤为发送过程&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[iMB].CS = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_INACTIVE)//缓冲区写激活代码&lt;BR /&gt; | (wno&amp;lt;&amp;lt;FLEXCAN_MB_CS_IDE_BIT_NO)//缓冲区写IDE位&lt;BR /&gt; | (bno&amp;lt;&amp;lt;FLEXCAN_MB_CS_RTR_BIT_NO)//缓冲区写RTR位&lt;BR /&gt; | FLEXCAN_MB_CS_LENGTH(length); //缓冲区写数据长度&lt;BR /&gt; &lt;BR /&gt; //缓冲区写ID&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[iMB].ID = (1 &amp;lt;&amp;lt; FLEXCAN_MB_ID_PRIO_BIT_NO) //传输的优先级&lt;BR /&gt; | ((id &amp;amp; ~(CAN_MSG_IDE_MASK|CAN_MSG_TYPE_MASK))&amp;lt;&amp;lt;i); &lt;BR /&gt; &lt;BR /&gt; //缓冲区写内容&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[iMB].WORD0 = word[0];&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[iMB].WORD1 = word[1];&lt;/P&gt;&lt;P&gt;//延迟&lt;BR /&gt; for(i = 0;i &amp;lt; 100;i++);&lt;BR /&gt; &lt;BR /&gt; //通过制定的发送代码开始发送&lt;BR /&gt; CANBaseAdd-&amp;gt;MB[iMB].CS = (CANBaseAdd-&amp;gt;MB[iMB].CS &amp;amp; ~(FLEXCAN_MB_CS_CODE_MASK)) &lt;BR /&gt; | FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_ONCE);//写激活代码&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; //限时等待发送完成（如果使用中断则限时等待语句可删除）&lt;BR /&gt; i=0;&lt;BR /&gt; &lt;BR /&gt; GPIOA_PTOR|=GPIO_PDOR_PDO(GPIO_PIN(29));//指示灯的亮、暗状态切换 &lt;BR /&gt; while(!(CANBaseAdd-&amp;gt;IFLAG1 &amp;amp; (1&amp;lt;&amp;lt;iMB)))&lt;BR /&gt; {&lt;BR /&gt; if((i++)&amp;gt;0x1000)&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; //清报文缓冲区中断标志&lt;BR /&gt; &lt;BR /&gt; CANBaseAdd-&amp;gt;IFLAG1 = (1&amp;lt;&amp;lt;iMB);&lt;BR /&gt; GPIOA_PTOR&amp;amp;=~GPIO_PDOR_PDO(GPIO_PIN(28));//指示灯的亮、暗状态切换&lt;BR /&gt; return 0;&lt;BR /&gt; &lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 13:36:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713543#M43826</guid>
      <dc:creator>minminzhengzhen</dc:creator>
      <dc:date>2017-09-25T13:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713544#M43827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; font-size: 15px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; vertical-align: baseline; color: #51626f; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;Hi Minmin Zhengzheng,&lt;/P&gt;&lt;P style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; font-size: 15px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; vertical-align: baseline; color: #51626f; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;I recommend you refer to the "Typical Usage" of CAN_LDD in &lt;A href="https://www.nxp.com/products/wireless-connectivity/zigbee/kinetis-design-studio-integrated-development-environment-ide:KDS_IDE?tab=Design_Tools_Tab"&gt;KDS3.2 ide&lt;/A&gt; , you can find them at here:&lt;/P&gt;&lt;P style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; font-size: 15px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; vertical-align: baseline; color: #51626f; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Typical Usage CAN_LDD.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/33412i5321DBC22193FC95/image-size/large?v=v2&amp;amp;px=999" role="button" title="Typical Usage CAN_LDD.png" alt="Typical Usage CAN_LDD.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; font-size: 15px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; vertical-align: baseline; color: #51626f; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;Hope it help! Have a nice day.&lt;/P&gt;&lt;P style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; font-size: 15px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; vertical-align: baseline; color: #51626f; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Robin&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&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, 26 Sep 2017 07:05:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713544#M43827</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2017-09-26T07:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713545#M43828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello：&lt;/P&gt;&lt;P&gt;I am using the codewarrior10.7,there is the can demo in Processor Expert. Is it the same as what you have said about "Typical Usage" of CAN_LDD? But the demo doesn't include the K60F120M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2017 08:09:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713545#M43828</guid>
      <dc:creator>minminzhengzhen</dc:creator>
      <dc:date>2017-09-26T08:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713546#M43829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. You can use it.&lt;/P&gt;&lt;P&gt;The usage of CAN_LDD is the same. You can create a Processor Expert project and refer that example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2017 08:38:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713546#M43829</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2017-09-26T08:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713547#M43830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;what's the difference in codewarrior example with Processor Expert. I don't know what the Processor Expert is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2017 12:48:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713547#M43830</guid>
      <dc:creator>minminzhengzhen</dc:creator>
      <dc:date>2017-09-26T12:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713548#M43831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Minmim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of difficulties you can also use the uTasker Open Source project for K60F120 and dual-CAN.&lt;BR /&gt;&lt;SPAN&gt;Documented at &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fdocs%2FuTasker%2FuTaskerCAN.PDF" rel="nofollow" target="_blank"&gt;http://www.utasker.com/docs/uTasker/uTaskerCAN.PDF&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Video at &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fyoutu.be%2FHa8cv_XEvco" rel="nofollow" target="_blank"&gt;https://youtu.be/Ha8cv_XEvco&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDE-independent and requires no code generators or porting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If you are new to CAN also beware that you need another active node on the CAN bus to correctly send messages - also ensure correct bus terminations.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis%2FTWR-K60F120M.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis/TWR-K60F120M.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2017 16:35:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713548#M43831</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-09-26T16:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713549#M43832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi：&lt;/P&gt;&lt;P&gt;    what's the uTasker Open Source project for K60F120? I am useing the Codewarrior 10.7. And the PDF doesn't have complete procedure demo. I am still in trouble.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 01:35:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713549#M43832</guid>
      <dc:creator>minminzhengzhen</dc:creator>
      <dc:date>2017-09-27T01:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713550#M43833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below information may help you know about the Processor Expert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;video&lt;/P&gt;&lt;P&gt;&lt;A href="http://v.youku.com/v_show/id_XMTUwNDUxOTEy.html"&gt;Processor Expert What You Need to Know&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.nxp.com/video/processor-expert-code-model-codewarrior-code-walkthrough:PROEXPCODMODCW_VID"&gt;Processor Expert® Code Model (CodeWarrior®) - Code Walkthrough&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;document:&lt;/P&gt;&lt;P&gt;&lt;A href="https://mcuoneclipse.com/2015/10/18/overview-processor-expert/"&gt;Overview: Processor Expert&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nxpic.org/module/forum/forum.php?mod=attachment&amp;amp;aid=MzMyNjIyfDEzNzFjMmIxfDE1MDY0ODI3MDV8MjAyMzM3M3w1OTcxMjE%3D"&gt;飞思卡尔单片机快速上手指南&lt;/A&gt; 6.2.3 处理器专家（PE）的使用&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nxpic.org/document/detail/index/id-12926"&gt;如何使用CAN_LDD实现FlexCAN ID的过滤&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 03:11:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713550#M43833</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2017-09-27T03:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713551#M43834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's difficult for me to learn the Processor Expert. I am a beginner. The teacher told me to use the CAN module to transimit data immediately instead of learning others. So I program the CAN procedure by myself according to other demo in Codewarrior10.7.Can you help me figure out my program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 10:53:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713551#M43834</guid>
      <dc:creator>minminzhengzhen</dc:creator>
      <dc:date>2017-09-27T10:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713552#M43835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Minmim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The uTasker project includes Codewarrior support - see &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fyoutu.be%2FuBbiw36Caq4" rel="nofollow" target="_blank"&gt;https://youtu.be/uBbiw36Caq4&lt;/A&gt;&lt;SPAN&gt; which explains how to use it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 22:07:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713552#M43835</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2017-09-27T22:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: can't send data about CAN Module in TWR-K60F120</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713553#M43836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please test the attached project.&lt;/P&gt;&lt;P&gt;And make sure you have connect another flexcan node on the CAN bus.&lt;/P&gt;&lt;P&gt;There are no CAN transceiver on TWR-K60F120M, you may need to connect it with MCU can_tx pins.&lt;/P&gt;&lt;P&gt;(It's sould be better test it with can bus analyser.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 03:33:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/can-t-send-data-about-CAN-Module-in-TWR-K60F120/m-p/713553#M43836</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2017-09-28T03:33:50Z</dc:date>
    </item>
  </channel>
</rss>

