<?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>S32GのトピックRe: S32G2 Can example does not transmit twice</title>
    <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1683400#M4040</link>
    <description>&lt;P&gt;Hi Tushar&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response,&lt;/P&gt;&lt;P&gt;Nevertheless, I hardly can understand what you suggested in order to solve my problem&lt;/P&gt;&lt;P&gt;The same problems happens when with the FlexCan example of the S32DS !&lt;/P&gt;&lt;P&gt;I really appreciate if you could send me a working example that can transmit and receive a on the FlexCAN, running on the Gold Box RDB2 S32G274A&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2023 18:02:28 GMT</pubDate>
    <dc:creator>ofer-bahar-guardknox</dc:creator>
    <dc:date>2023-07-06T18:02:28Z</dc:date>
    <item>
      <title>S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1679987#M3946</link>
      <description>&lt;P&gt;Trying to run the Can_Example_S32G274A_M7 on the RDB2 (GoldBox)&lt;/P&gt;&lt;P&gt;SD32 3.5, RTD 4.0.1&lt;/P&gt;&lt;P&gt;Started a new project from the above example&lt;/P&gt;&lt;P&gt;Build the project&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did all steps in as in the&amp;nbsp; &lt;EM&gt;&lt;SPAN class=""&gt;HANDS ON CAN : IMPORT CAN EXAMPLE PROJECT&lt;/SPAN&gt;&amp;nbsp;in the&amp;nbsp;&lt;SPAN class=""&gt;S32G-VNP-GLDBOX&amp;nbsp;REAL TIME DRIVER EXAMPLE ENABLEMENT GUIDE&lt;/SPAN&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Connected the FlexCan0 to FlexCan1 - with the external harness supplied with the RDB2&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like the first transmission ends OK, the&amp;nbsp;CanIf_RxIndication callback function is called indeed&lt;/P&gt;&lt;P&gt;but after the 1'st transmit, it is stuck in the&amp;nbsp;Can_Write function which returns BUSY !!&lt;/P&gt;&lt;P&gt;AND - checking the physical CAN BUS lines with oscilloscope does not show that it transmits something&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oferbaharguardknox_0-1688299223611.png" style="width: 700px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/230406i5E34F567CBAB0EED/image-dimensions/700x590?v=v2" width="700" height="590" role="button" title="oferbaharguardknox_0-1688299223611.png" alt="oferbaharguardknox_0-1688299223611.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2023 12:08:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1679987#M3946</guid>
      <dc:creator>ofer-bahar-guardknox</dc:creator>
      <dc:date>2023-07-02T12:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1683074#M4034</link>
      <description>&lt;P&gt;Hi Ofer bahar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;Hope you are doing well&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;it seems like you edited in example code. can you check it. also refer can module user manual(RTD_CAN_UM.pdf).&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;Can_Write checks if hardware transmit object that is identified by the HTH is free.&lt;/FONT&gt;&lt;FONT color="#333333"&gt; Can_Write checks if another Can_Write is ongoing for the same HTH. &lt;/FONT&gt;&lt;FONT color="#333333"&gt;The mutex for that HTH is set to 'signaled' the ID, DLC and SDU are put in a format appropriate for&lt;/FONT&gt;&lt;FONT color="#333333"&gt; the hardware (if necessary) and copied in the appropriate hardware registers or buffers.&lt;/FONT&gt;&lt;FONT color="#333333"&gt; All necessary control operations to initiate the transmit are done.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;The mutex for that HTH is released. The function returns with E_OK.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;possible reason for Busy&lt;BR /&gt;&lt;FONT color="#333333"&gt;(1) When hardware transmit object is busy with another transmit request,t&lt;/FONT&gt;&lt;FONT color="#333333"&gt;he function returns with&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CAN_BUSY.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;(2) A preemptive call of Can_Write has been issued, that could not be handled reentrant (i.e. a call with &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the same HTH). t&lt;/FONT&gt;&lt;FONT color="#333333"&gt;he function returns with CAN_BUSY the function is non blocking&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;(3) The hardware transmit object is busy with another transmit request for an L-PDU that has lower priority&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; than that for the current request&lt;/FONT&gt;&lt;FONT color="#333333"&gt; the transmission of the previous L-PDU is cancelled (asynchronously)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the function returns with CAN_BUSY.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;Regards ,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;Tushar&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 09:51:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1683074#M4034</guid>
      <dc:creator>nxf92355</dc:creator>
      <dc:date>2023-07-06T09:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1683400#M4040</link>
      <description>&lt;P&gt;Hi Tushar&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response,&lt;/P&gt;&lt;P&gt;Nevertheless, I hardly can understand what you suggested in order to solve my problem&lt;/P&gt;&lt;P&gt;The same problems happens when with the FlexCan example of the S32DS !&lt;/P&gt;&lt;P&gt;I really appreciate if you could send me a working example that can transmit and receive a on the FlexCAN, running on the Gold Box RDB2 S32G274A&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 18:02:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1683400#M4040</guid>
      <dc:creator>ofer-bahar-guardknox</dc:creator>
      <dc:date>2023-07-06T18:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686591#M4100</link>
      <description>&lt;P&gt;Hi Ofer&lt;/P&gt;
&lt;P&gt;Okay , I think you raised ticket in Nxp &lt;SPAN class="appName slds-context-bar__label-action slds-context-bar__app-name"&gt;&lt;SPAN class="slds-truncate" title="Tech Support" data-target-selection-name="18091d42e3de45d9832ee76c43bc1481"&gt;Tech Support. can we continue there and closed this ticket ? both are same &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards ,&lt;/P&gt;
&lt;P&gt;Tushar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 11:25:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686591#M4100</guid>
      <dc:creator>nxf92355</dc:creator>
      <dc:date>2023-07-12T11:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686593#M4101</link>
      <description>&lt;P&gt;sure&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 11:27:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686593#M4101</guid>
      <dc:creator>ofer-bahar-guardknox</dc:creator>
      <dc:date>2023-07-12T11:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686594#M4102</link>
      <description>&lt;P&gt;sure&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 11:28:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1686594#M4102</guid>
      <dc:creator>ofer-bahar-guardknox</dc:creator>
      <dc:date>2023-07-12T11:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1716423#M4673</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Did that issue get a solution, I am encountering the same problems?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 09:52:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1716423#M4673</guid>
      <dc:creator>Ben_2</dc:creator>
      <dc:date>2023-09-04T09:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1716428#M4674</link>
      <description>yes,&lt;BR /&gt;There were few problems, one was with the CAN BUS compatibility of speed, another was with no ECU was approving the ID&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Sep 2023 10:03:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1716428#M4674</guid>
      <dc:creator>ofer-bahar-guardknox</dc:creator>
      <dc:date>2023-09-04T10:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: S32G2 Can example does not transmit twice</title>
      <link>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1720998#M4753</link>
      <description>&lt;P&gt;Thank you I will look into it.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 08:29:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/S32G2-Can-example-does-not-transmit-twice/m-p/1720998#M4753</guid>
      <dc:creator>Ben_2</dc:creator>
      <dc:date>2023-09-12T08:29:53Z</dc:date>
    </item>
  </channel>
</rss>

