<?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: NXP S32K144 EVB LIN Communication Question in S32K</title>
    <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332653#M11902</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ruihang_wu_0-1630426804475.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/154693i574FBC346B5E8275/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ruihang_wu_0-1630426804475.png" alt="ruihang_wu_0-1630426804475.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I set the data store class as volatile&lt;/P&gt;&lt;P&gt;Thank you &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/72088"&gt;@mariuslucianand&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked at the other thread and implemented something similar. This worked around our issue with LIN communication.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Aug 2021 18:38:56 GMT</pubDate>
    <dc:creator>ruihang_wu</dc:creator>
    <dc:date>2021-08-31T18:38:56Z</dc:date>
    <item>
      <title>NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1331116#M11864</link>
      <description>&lt;P&gt;I've followed the LIN Master and Slave examples for the NXP S32K144 EVB, connected the wires according to the description in the examples. The communication is all good between Master and Slave.&lt;BR /&gt;But, when I disconnect a LIN wire and plug it back in, the communication stops completely. Is there a way to restore the communication back again without manual power reset?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 15:43:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1331116#M11864</guid>
      <dc:creator>saranya_chitta</dc:creator>
      <dc:date>2021-08-27T15:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1331961#M11887</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/72088"&gt;@mariuslucianand&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've followed the LIN Master and Slave examples for the NXP S32K144 EVB, connected both the EVBs according to the description in the examples. The communication is all good between Master and Slave.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But, when I disconnect a LIN wire and plug it back in, the communication stops completely. Is there a way to restore the communication back again without manual power reset?&lt;BR /&gt;Also, I was able to see some signals on the Freemaster - lin rx busy, lin bus busy, lin tx busy etc., Is there any way to access and play with these signals on Simulink?&lt;BR /&gt;&lt;BR /&gt;Thank you for your help!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 20:18:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1331961#M11887</guid>
      <dc:creator>saranya_chitta</dc:creator>
      <dc:date>2021-08-30T20:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332309#M11894</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/132268"&gt;@saranya_chitta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;MBDT generates code on top of the S32SDK for S32K. There are a couple of C functions that can be used besides or block, solving some issues like the ones you see with your board.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example you can get the LIN state using the following function&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;lin_node_state_t LIN_DRV_GetCurrentNodeState(uint32_t instance)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;and also, you can abort a transfer (which works for the CAN, see below) using the following function:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;status_t LIN_DRV_AbortTransferData(uint32_t instance).&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Please give this a try and let me know if worked.&lt;/P&gt;
&lt;P&gt;A similar discussion we had previously on CAN, please have a look at the link below. This might be a good tutorial for getting the same results on LIN.&lt;A href="https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/Reset-CAN-Bus-Silence/m-p/1190321" target="_blank"&gt;https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/Reset-CAN-Bus-Silence/m-p/1190321&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Marius&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 07:27:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332309#M11894</guid>
      <dc:creator>mariuslucianand</dc:creator>
      <dc:date>2021-08-31T07:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332367#M11895</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;this is a feedback from SDK team I got...&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;"I have checked customer issue on my site(Release SDK_RTM_4.0.1). I have tried to disconnect and reconnect between Master and Slave. However,&amp;nbsp; it seem that the communication is still normal.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;See the description document of the example:&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#FF0000"&gt;-&lt;/FONT&gt; &lt;FONT color="#FF0000"&gt;If value of temperature signal is higher than MOTOR1_OVER_TEMP value, Master SeatECU will send STOP command&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp;through Motor1Selection signal to stop motor and turn on RED_LED&lt;/FONT&gt;.&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;- If value of temperature signal is in range from MOTOR1_MAX_TEMP value to MOTOR1_OVER_TEMP value, master SeatECU&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;will send DECREASE MOTOR SPEED command through Motor1Selection signal to reduce motor speed and turn on BLUE_LED.&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;- If value of temperature signal is lower than MOTOR1_MAX_TEMP value, master will send INCREASE MOTOR SPEED&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;command through Motor1Selection signal to increase motor speed and turn on GREEN_LED.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;From my point of view, maybe the Master and Slave have worked on STOP case when they reconnected. And then, &lt;FONT color="#FF0000"&gt;Slave and Master will always turn on RED_LED&lt;/FONT&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;So for clarification, please provide some information as below:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;The SDK release version which you are running.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;The boards status when you reconnect."&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;BR, Petr&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 08:27:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332367#M11895</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2021-08-31T08:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332653#M11902</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ruihang_wu_0-1630426804475.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/154693i574FBC346B5E8275/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ruihang_wu_0-1630426804475.png" alt="ruihang_wu_0-1630426804475.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I set the data store class as volatile&lt;/P&gt;&lt;P&gt;Thank you &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/72088"&gt;@mariuslucianand&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked at the other thread and implemented something similar. This worked around our issue with LIN communication.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 18:38:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332653#M11902</guid>
      <dc:creator>ruihang_wu</dc:creator>
      <dc:date>2021-08-31T18:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: NXP S32K144 EVB LIN Communication Question</title>
      <link>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332672#M11903</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/72088"&gt;@mariuslucianand&lt;/a&gt;&lt;/P&gt;&lt;P&gt;I've tried to replicate the same as you mentioned by following the URL you've shared and I see the communication is restored now without a power reset (when I intentionally pull the LIN wire and plug it back in). The attached example in the other thread was helpful.&lt;/P&gt;&lt;P&gt;Appreciate your help!&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 18:56:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/NXP-S32K144-EVB-LIN-Communication-Question/m-p/1332672#M11903</guid>
      <dc:creator>saranya_chitta</dc:creator>
      <dc:date>2021-08-31T18:56:00Z</dc:date>
    </item>
  </channel>
</rss>

