<?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: The issue of LLCE routing function failure</title>
    <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2131565#M14069</link>
    <description>&lt;P&gt;Currently, it is configured to disable the routing output of this channel within the TX_ACK_ERR interrupt. Enable the route output within the interrupt of sending completion or receiving completion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void Can_43_LLCE_ErrorNotificationCallback(CanErrorNotificationType* error)
{
    if ((error-&amp;gt;ErrorInfo-&amp;gt;eModuleId == LLCE_TX) &amp;amp;&amp;amp; (error-&amp;gt;ErrorInfo-&amp;gt;eErrorCode == LLCE_ERROR_BCAN_ACKERR))
    {
        Can_43_LLCE_SetChannelRoutingOutputState(error-&amp;gt;u8CanIfCtrlId, CAN_43_LLCE_CHANNELSTATE_DISABLED);
    }
}


void CanIf_TxConfirmation (uint16 Hth)
{
    Can_43_LLCE_SetChannelRoutingOutputState(Can_43_LLCE_GetCurrentConfig()-&amp;gt;aHohList[Hth].u8ControllerId, CAN_43_LLCE_CHANNELSTATE_ENABLED);
}


void CanIf_RxIndication(const Can_HwType* Mailbox, const PduInfoType* PduInfoPtr)
{
    Can_43_LLCE_SetChannelRoutingOutputState(Can_43_LLCE_GetCurrentConfig()-&amp;gt;aHohList[Mailbox-&amp;gt;Hoh].u8ControllerId, CAN_43_LLCE_CHANNELSTATE_ENABLED);
}


 
&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 10 Jul 2025 08:40:20 GMT</pubDate>
    <dc:creator>S32G2_QQ</dc:creator>
    <dc:date>2025-07-10T08:40:20Z</dc:date>
    <item>
      <title>The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2127872#M13966</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;It is mentioned in the firmware instruction manual of LLCE:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;in a routing configuration, the matching advanced filter shall have enough RX message buffers assigned to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;accomodate the eventual delay caused by outgoing TX channel being unable to send.&lt;STRONG&gt; The RX MB will be kept&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;blocked until all the destinations are served&lt;/STRONG&gt;。&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;How should I understand this sentence? In one-to-many forwarding routing, if the destination channel fails to successfully send the message to the bus (receive the ACK), then the RX of the source channel cannot be released and remains blocked continuously? Will this email address no longer be able to perform the forwarding function in the future?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;在LLCE固件手册中提到，&lt;STRONG&gt;RX MB需要在所有目标被处理之前，将保持堵塞状态，&lt;/STRONG&gt;我应该怎么理解这句话？在一对多转发路由中，如果目标通道无法将报文成功发送到总线上（收到ACK），那么源通道的RX就无法被释放，持续保持堵塞状态？后续该邮箱就不可以再执行转发功能？&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 07:27:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2127872#M13966</guid>
      <dc:creator>S32G2_QQ</dc:creator>
      <dc:date>2025-07-03T07:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2127956#M13973</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;Thank you for your information.&lt;/P&gt;
&lt;P&gt;Refer to the Manul,&amp;nbsp;when you set up an "Advanced Filter" for message forwarding, the system will first store this message in a receive buffer (RX MB). If one of the targets cannot be sent out all the time, this RX MB will remain locked until all the forwarded targets have completed the sending task.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Joey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 09:06:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2127956#M13973</guid>
      <dc:creator>Joey_z</dc:creator>
      <dc:date>2025-07-03T09:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128018#M13978</link>
      <description>&lt;P&gt;thank you for the response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want to do now is: Even if the destination channel is unable to complete CAN communication for some reason, such as CAN BUSOFF, then do not affect the other destination channels of this filter. To meet this demand, could you please recommend any methods? For example, configure the LLCE instruction through M7 or the AF module through EB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;我现在想要做的是： 即使目的通道由于某些原因，始终无法完成CAN通信，例如CAN BUSOFF，那么不要对该过滤器的其他目的通道有影响。 要满足这种需求，请问有什么推荐的方法吗？ 例如，通过M7配置LLCE指令或者EB配置AF模块。&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 10:08:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128018#M13978</guid>
      <dc:creator>S32G2_QQ</dc:creator>
      <dc:date>2025-07-03T10:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128060#M13985</link>
      <description>&lt;P&gt;Also, I would like to ask, what is the design concept of LLCE? Why must different forwarding channels be affected before?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 11:25:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128060#M13985</guid>
      <dc:creator>S32G2_QQ</dc:creator>
      <dc:date>2025-07-03T11:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128496#M14007</link>
      <description>&lt;P&gt;hi,S32G2_QQ&lt;/P&gt;
&lt;P&gt;Thank you for your information.&lt;/P&gt;
&lt;P&gt;For The RX MB will be kept blocked until all the destinations are served. When configuring message routing, make sure the advanced filter has enough RX buffers assigned so that messages can be stored if the TX channel can't send them right away.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Joey&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 07:22:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2128496#M14007</guid>
      <dc:creator>Joey_z</dc:creator>
      <dc:date>2025-07-04T07:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: The issue of LLCE routing function failure</title>
      <link>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2131565#M14069</link>
      <description>&lt;P&gt;Currently, it is configured to disable the routing output of this channel within the TX_ACK_ERR interrupt. Enable the route output within the interrupt of sending completion or receiving completion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void Can_43_LLCE_ErrorNotificationCallback(CanErrorNotificationType* error)
{
    if ((error-&amp;gt;ErrorInfo-&amp;gt;eModuleId == LLCE_TX) &amp;amp;&amp;amp; (error-&amp;gt;ErrorInfo-&amp;gt;eErrorCode == LLCE_ERROR_BCAN_ACKERR))
    {
        Can_43_LLCE_SetChannelRoutingOutputState(error-&amp;gt;u8CanIfCtrlId, CAN_43_LLCE_CHANNELSTATE_DISABLED);
    }
}


void CanIf_TxConfirmation (uint16 Hth)
{
    Can_43_LLCE_SetChannelRoutingOutputState(Can_43_LLCE_GetCurrentConfig()-&amp;gt;aHohList[Hth].u8ControllerId, CAN_43_LLCE_CHANNELSTATE_ENABLED);
}


void CanIf_RxIndication(const Can_HwType* Mailbox, const PduInfoType* PduInfoPtr)
{
    Can_43_LLCE_SetChannelRoutingOutputState(Can_43_LLCE_GetCurrentConfig()-&amp;gt;aHohList[Mailbox-&amp;gt;Hoh].u8ControllerId, CAN_43_LLCE_CHANNELSTATE_ENABLED);
}


 
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 10 Jul 2025 08:40:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/The-issue-of-LLCE-routing-function-failure/m-p/2131565#M14069</guid>
      <dc:creator>S32G2_QQ</dc:creator>
      <dc:date>2025-07-10T08:40:20Z</dc:date>
    </item>
  </channel>
</rss>

