<?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: Communication problems between CAN, UART and upper computer</title>
    <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1582727#M20014</link>
    <description>Hi Senlent , I also want to how to use UART to communicate with CAN. Can you also send me a post?</description>
    <pubDate>Sat, 14 Jan 2023 08:30:07 GMT</pubDate>
    <dc:creator>Hanchun</dc:creator>
    <dc:date>2023-01-14T08:30:07Z</dc:date>
    <item>
      <title>Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308821#M11382</link>
      <description>&lt;P&gt;I am trying to communicate with the computer by CAN and UART. The codes are in the attachment and below. I would like to know why I have the situation in the picture&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QQ截图20210716133229.png" style="width: 344px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/150000iA49860983B9FBFC1/image-size/large?v=v2&amp;amp;px=999" role="button" title="QQ截图20210716133229.png" alt="QQ截图20210716133229.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;#include "Cpu.h"&lt;BR /&gt;#include "clockMan1.h"&lt;BR /&gt;#include "dmaController1.h"&lt;BR /&gt;#include "pin_mux.h"&lt;BR /&gt;#include "lpuart1.h"&lt;/P&gt;&lt;P&gt;#include &amp;lt;stdint.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdbool.h&amp;gt;&lt;BR /&gt;#include &amp;lt;string.h&amp;gt;&lt;/P&gt;&lt;P&gt;volatile int exit_code = 0;&lt;/P&gt;&lt;P&gt;typedef enum&lt;BR /&gt;{&lt;BR /&gt;helloa = 0x00U,&lt;BR /&gt;hia = 0x01U&lt;BR /&gt;} can_commands_list;&lt;/P&gt;&lt;P&gt;#define TX_MAILBOX (1UL)&lt;BR /&gt;#define TX_MSG_ID (1UL)&lt;BR /&gt;#define RX_MAILBOX (0UL)&lt;BR /&gt;#define RX_MSG_ID (2UL)&lt;/P&gt;&lt;P&gt;#define welcomeMsg "Now you can begin typing:\r\n"&lt;/P&gt;&lt;P&gt;#define errorMsg "An error occurred! The application will stop!\r\n"&lt;BR /&gt;#define BUFFER_SIZE 256U&lt;BR /&gt;#define TIMEOUT 100U&lt;BR /&gt;uint8_t buffer[BUFFER_SIZE];&lt;BR /&gt;uint8_t bufferIdx;&lt;BR /&gt;uint8_t xinxi = (uint8_t)helloa;&lt;BR /&gt;/* User includes (#include below this line is not maintained by Processor Expert) */&lt;BR /&gt;void Init(void);&lt;/P&gt;&lt;P&gt;void rxCallback(void *driverState, uart_event_t event, void *userData)&lt;BR /&gt;{&lt;BR /&gt;/* Unused parameters */&lt;BR /&gt;(void)driverState;&lt;BR /&gt;(void)userData;&lt;/P&gt;&lt;P&gt;/* Check the event type */&lt;BR /&gt;if (event == UART_EVENT_RX_FULL)&lt;BR /&gt;{&lt;BR /&gt;/* The reception stops when newline is received or the buffer is full */&lt;BR /&gt;if ((buffer[bufferIdx] != '\n') &amp;amp;&amp;amp; (bufferIdx != (BUFFER_SIZE - 2U)))&lt;BR /&gt;{&lt;BR /&gt;/* Update the buffer index and the rx buffer */&lt;BR /&gt;bufferIdx++;&lt;BR /&gt;LPUART_DRV_SetRxBuffer(INST_LPUART1, &amp;amp;buffer[bufferIdx], 1U);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;void Init(void)&lt;BR /&gt;{&lt;BR /&gt;CLOCK_SYS_Init(g_clockManConfigsArr, CLOCK_MANAGER_CONFIG_CNT,&lt;BR /&gt;g_clockManCallbacksArr, CLOCK_MANAGER_CALLBACK_CNT);&lt;BR /&gt;CLOCK_SYS_UpdateConfiguration(0U, CLOCK_MANAGER_POLICY_FORCIBLE);&lt;/P&gt;&lt;P&gt;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS, g_pin_mux_InitConfigArr);&lt;/P&gt;&lt;P&gt;LPUART_DRV_Init(INST_LPUART1, &amp;amp;lpuart1_State, &amp;amp;lpuart1_InitConfig0);&lt;/P&gt;&lt;P&gt;CAN_Init(&amp;amp;can_pal1_instance, &amp;amp;can_pal1_Config0);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/*!&lt;BR /&gt;\brief The main function for the project.&lt;BR /&gt;\details The startup initialization sequence is the following:&lt;BR /&gt;* - startup asm routine&lt;BR /&gt;* - main()&lt;BR /&gt;*/&lt;BR /&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;/* Write your local variable definition here */&lt;/P&gt;&lt;P&gt;/*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/&lt;BR /&gt;#ifdef PEX_RTOS_INIT&lt;BR /&gt;PEX_RTOS_INIT(); /* Initialization of the selected RTOS. Macro is defined by the RTOS component. */&lt;BR /&gt;#endif&lt;BR /&gt;/*** End of Processor Expert internal initialization. ***/&lt;BR /&gt;uint32_t bytesRemaining;&lt;BR /&gt;status_t status;&lt;/P&gt;&lt;P&gt;/* Write your code here */&lt;BR /&gt;Init();&lt;BR /&gt;LPUART_DRV_InstallRxCallback(INST_LPUART1,rxCallback,NULL);&lt;BR /&gt;LPUART_DRV_SendDataBlocking(INST_LPUART1, (uint8_t *)welcomeMsg, strlen(welcomeMsg), TIMEOUT);&lt;/P&gt;&lt;P&gt;can_buff_config_t buffCfg = {&lt;BR /&gt;.enableFD = true,&lt;BR /&gt;.enableBRS = true,&lt;BR /&gt;.fdPadding = 0U,&lt;BR /&gt;.idType = CAN_MSG_ID_STD,&lt;BR /&gt;.isRemote = false&lt;BR /&gt;};&lt;BR /&gt;CAN_ConfigTxBuff(&amp;amp;can_pal1_instance,TX_MAILBOX, &amp;amp;buffCfg);&lt;BR /&gt;can_message_t message = {&lt;BR /&gt;.cs = 0U,&lt;BR /&gt;.id = TX_MSG_ID,&lt;BR /&gt;.data[0] = helloa,&lt;BR /&gt;.length = 1U&lt;BR /&gt;};&lt;BR /&gt;while(1)&lt;BR /&gt;{&lt;BR /&gt;LPUART_DRV_ReceiveData(INST_LPUART1,buffer,1U);&lt;BR /&gt;while(LPUART_DRV_GetReceiveStatus(INST_LPUART1,&amp;amp;bytesRemaining)==STATUS_BUSY);&lt;/P&gt;&lt;P&gt;status=LPUART_DRV_GetReceiveStatus(INST_LPUART1,&amp;amp;bytesRemaining);&lt;/P&gt;&lt;P&gt;if (status != STATUS_SUCCESS)&lt;BR /&gt;{&lt;BR /&gt;/* If an error occurred, send the error message and exit the loop */&lt;BR /&gt;LPUART_DRV_SendDataBlocking(INST_LPUART1, (uint8_t *)errorMsg, strlen(errorMsg), TIMEOUT);&lt;BR /&gt;break;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;/* Append string terminator to the received data */&lt;BR /&gt;bufferIdx++;&lt;BR /&gt;buffer[bufferIdx] = 0U;&lt;/P&gt;&lt;P&gt;if(strcmp((char *)buffer, "Hello") != 0)&lt;BR /&gt;{&lt;BR /&gt;CAN_Send(&amp;amp;can_pal1_instance, TX_MAILBOX, &amp;amp;message);&lt;BR /&gt;CAN_ConfigRxBuff(&amp;amp;can_pal1_instance, RX_MAILBOX, &amp;amp;buffCfg, RX_MSG_ID);&lt;BR /&gt;can_message_t recvMsg;&lt;BR /&gt;CAN_Receive(&amp;amp;can_pal1_instance, RX_MAILBOX, &amp;amp;recvMsg);&lt;/P&gt;&lt;P&gt;while(CAN_GetTransferStatus(&amp;amp;can_pal1_instance, RX_MAILBOX) == STATUS_BUSY);&lt;BR /&gt;if((recvMsg.data[0] == helloa) &amp;amp;&amp;amp;&lt;BR /&gt;recvMsg.id == RX_MSG_ID)&lt;BR /&gt;{&lt;BR /&gt;/* Toggle output value LED1 */&lt;BR /&gt;PINS_DRV_WritePin(PTD,0,1);&lt;BR /&gt;}&lt;BR /&gt;else if((recvMsg.data[0] == hia) &amp;amp;&amp;amp;&lt;BR /&gt;recvMsg.id == RX_MSG_ID)&lt;BR /&gt;{&lt;BR /&gt;/* Toggle output value LED0 */&lt;BR /&gt;PINS_DRV_WritePin(PTD,16,1);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else if(strcmp((char *)buffer, "Hello world") != 0)&lt;BR /&gt;{&lt;BR /&gt;xinxi=hia;&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;PINS_DRV_WritePin(PTD,15,1);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Send the received data back */&lt;BR /&gt;LPUART_DRV_SendDataBlocking(INST_LPUART1, buffer, bufferIdx, TIMEOUT);&lt;BR /&gt;/* Reset the buffer index to start a new reception */&lt;BR /&gt;bufferIdx = 0U;&lt;BR /&gt;}&lt;BR /&gt;/* For example: for(;;) { } */&lt;/P&gt;&lt;P&gt;/*** Don't write any code pass this line, or it will be deleted during code generation. ***/&lt;BR /&gt;/*** RTOS startup code. Macro PEX_RTOS_START is defined by the RTOS component. DON'T MODIFY THIS CODE!!! ***/&lt;BR /&gt;#ifdef PEX_RTOS_START&lt;BR /&gt;PEX_RTOS_START(); /* Startup of the selected RTOS. Macro is defined by the RTOS component. */&lt;BR /&gt;#endif&lt;BR /&gt;/*** End of RTOS startup code. ***/&lt;BR /&gt;/*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/&lt;BR /&gt;for(;;) {&lt;BR /&gt;if(exit_code != 0) {&lt;BR /&gt;break;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;return exit_code;&lt;BR /&gt;/*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 05:44:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308821#M11382</guid>
      <dc:creator>kalajiao</dc:creator>
      <dc:date>2021-07-16T05:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308850#M11385</link>
      <description>&lt;P&gt;Hi@&lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188422" target="_self" aria-label="View Profile of kalajiao"&gt;&lt;SPAN class=""&gt;kalajiao&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Can you provide complete project and the information of IDE? I will get back to you next Monday.&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Jim,&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 06:39:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308850#M11385</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2021-07-16T06:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308854#M11386</link>
      <description>&lt;P&gt;Sure, I'm in a situation where after running the code I can't send any data beyond the initial welcome message&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 06:45:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308854#M11386</guid>
      <dc:creator>kalajiao</dc:creator>
      <dc:date>2021-07-16T06:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308867#M11387</link>
      <description>&lt;P&gt;OK. there are many module examples in the project directory ,you can refer it first.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 06:56:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1308867#M11387</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2021-07-16T06:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309462#M11394</link>
      <description>&lt;P&gt;Hi@&lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188422" target="_self" aria-label="View Profile of kalajiao"&gt;&lt;SPAN class=""&gt;kalajiao&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Modified:&lt;/P&gt;
&lt;P&gt;Step1:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1626660155597.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/150131i52D46B40DB586298/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_0-1626660155597.png" alt="Senlent_0-1626660155597.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Step 2:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_1-1626660250307.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/150132iA063547EA83537E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_1-1626660250307.png" alt="Senlent_1-1626660250307.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Step3:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_2-1626660279453.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/150133iFFA580E02699FCB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_2-1626660279453.png" alt="Senlent_2-1626660279453.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_3-1626660363832.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/150134iD055D749B0F24A32/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Senlent_3-1626660363832.png" alt="Senlent_3-1626660363832.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;suggestion:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If you don’t know the peripheral modules, please refer to the official routines and data manuals first.&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Jim.&lt;/P&gt;
&lt;P&gt;if this answer is useful to you, please click Kudos.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 02:15:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309462#M11394</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2021-07-19T02:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309519#M11396</link>
      <description>&lt;P&gt;I wanted to know how to use UART to communicate with CAN. I tried it but failed.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 05:03:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309519#M11396</guid>
      <dc:creator>kalajiao</dc:creator>
      <dc:date>2021-07-19T05:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309625#M11398</link>
      <description>&lt;P&gt;Hi@&lt;A id="link_13" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188422" target="_self" aria-label="View Profile of kalajiao"&gt;&lt;SPAN class=""&gt;kalajiao&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I replied to you by email, please reply if you have any questions.&lt;/P&gt;
&lt;P&gt;BR!&lt;/P&gt;
&lt;P&gt;Jim.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 07:02:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309625#M11398</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2021-07-19T07:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309667#M11399</link>
      <description>&lt;P&gt;I can't reply to the email you sent to me. Could you please send me your email address? My address is 1815701792@qq.com&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 07:38:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309667#M11399</guid>
      <dc:creator>kalajiao</dc:creator>
      <dc:date>2021-07-19T07:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309864#M11402</link>
      <description>&lt;P&gt;Can you send me your email address? I can't reply to you by email. My email address is 1815701792@qq.com&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 12:50:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1309864#M11402</guid>
      <dc:creator>kalajiao</dc:creator>
      <dc:date>2021-07-19T12:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1582727#M20014</link>
      <description>Hi Senlent , I also want to how to use UART to communicate with CAN. Can you also send me a post?</description>
      <pubDate>Sat, 14 Jan 2023 08:30:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1582727#M20014</guid>
      <dc:creator>Hanchun</dc:creator>
      <dc:date>2023-01-14T08:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1924318#M38701</link>
      <description>&lt;P&gt;update new IDE S32DS3.5 , S32D2.2 is old ,it is improper. Never late to learn.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2024 03:56:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1924318#M38701</guid>
      <dc:creator>chenhua</dc:creator>
      <dc:date>2024-08-03T03:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Communication problems between CAN, UART and upper computer</title>
      <link>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1924319#M38702</link>
      <description>&lt;P&gt;大兄弟，更新到 S32DS3.5 ,活到老，学到老。&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2024 03:56:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Communication-problems-between-CAN-UART-and-upper-computer/m-p/1924319#M38702</guid>
      <dc:creator>chenhua</dc:creator>
      <dc:date>2024-08-03T03:56:48Z</dc:date>
    </item>
  </channel>
</rss>

