<?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>S32K中的主题 Re: Can_tx_rx same time</title>
    <link>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896238#M4382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Praveena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the result, did you check send and receive separately?&lt;/P&gt;&lt;P&gt;Is there any packet loss, which address mode and what is the frequency?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide the full file also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 May 2019 09:30:19 GMT</pubDate>
    <dc:creator>vinothkumars</dc:creator>
    <dc:date>2019-05-02T09:30:19Z</dc:date>
    <item>
      <title>Can_tx_rx same time</title>
      <link>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896237#M4381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can transmit and receive at a time?? I am using CAN_PAL.Here is my code,CAN any one help me??&lt;/P&gt;&lt;P&gt;/*************************************/&lt;/P&gt;&lt;P&gt;CAN_Init(INST_CAN_PAL1, &amp;amp;can_pal1_Config0); //CAN intialize&lt;/P&gt;&lt;P&gt;can_buff_config_t tx_buff = {&lt;BR /&gt; .enableFD = false,&lt;BR /&gt; .enableBRS = true,&lt;BR /&gt; .fdPadding = 0U,&lt;BR /&gt; .idType = CAN_MSG_ID_EXT,&lt;BR /&gt; .isRemote = false&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;CAN_ConfigTxBuff(INST_CAN_PAL1,0,&amp;amp;tx_buff);&lt;/P&gt;&lt;P&gt;can_message_t tx_msg = {&lt;BR /&gt; // .cs = 0U,&lt;BR /&gt; .id = 0x01,&lt;BR /&gt; .data[0] = 0x02,&lt;BR /&gt; .data[1] = 0x04,&lt;BR /&gt; .data[2] = 0x08,&lt;BR /&gt; .length = 3&lt;BR /&gt; };&lt;BR /&gt; can_buff_config_t rx_buff = {&lt;BR /&gt; .enableFD = 0,&lt;BR /&gt; .enableBRS = true,&lt;BR /&gt; .fdPadding = 0U,&lt;BR /&gt; .idType = CAN_MSG_ID_EXT,&lt;BR /&gt; .isRemote = false&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN_ConfigRxBuff(INST_CAN_PAL1,0,&amp;amp;rx_buff,1);&lt;/P&gt;&lt;P&gt;can_message_t rx_msg = {&lt;BR /&gt; //.cs = 0U,&lt;BR /&gt; .id = 1,&lt;BR /&gt; .length = 2&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;while(1)&lt;BR /&gt; {&lt;BR /&gt; CAN_Send(INST_CAN_PAL1,0,&amp;amp;tx_msg);&lt;BR /&gt; CAN_Receive(1,0,&amp;amp;rx_msg);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;/****************************************/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 09:46:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896237#M4381</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-04-30T09:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can_tx_rx same time</title>
      <link>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896238#M4382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Praveena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the result, did you check send and receive separately?&lt;/P&gt;&lt;P&gt;Is there any packet loss, which address mode and what is the frequency?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide the full file also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 May 2019 09:30:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896238#M4382</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2019-05-02T09:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can_tx_rx same time</title>
      <link>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896239#M4383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On which chip and what sdk version you use ?&lt;/P&gt;&lt;P&gt;Second what configuration was applied to&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;CAN_Init ? Because from your configuration of tx message buffer is something not right, becasue brs and fd must be enable else the function will return status error. in your code first I suggest to check the function status return in case something is wrong or missconfigured.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;And the major issue is that the Pal function requires a structure as parameter that identify the structure type and instance number not a macro defined as symbol for instance no.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;CAN_Init(INST_CAN_PAL1, &amp;amp;can_pal1_Config0);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;This is correct only if you defined the symbol &lt;SPAN style="background-color: #ffffff;"&gt;INST_CAN_PAL1&amp;nbsp;&lt;/SPAN&gt;as address to the structure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 May 2019 11:25:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Can-tx-rx-same-time/m-p/896239#M4383</guid>
      <dc:creator>alexandrunan</dc:creator>
      <dc:date>2019-05-03T11:25:09Z</dc:date>
    </item>
  </channel>
</rss>

